设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 1680|回复: 4
打印 上一主题 下一主题

[求助]为什么是死循环--*purana转移--*feng1256转移

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-3 01:47:09 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
#include <iostream>
#include <string>
using namespace std;
typedef struct node
{
int number;
int password;
struct node *next;
}SLink;
int GetLength(SLink *sq)
{

int i=1;
SLink *p=sq->next;
while(p!=sq)
{
i++;p=p->next;
}
return i;
}
int DelElem(SLink *sq,int i)
{
int j=1;
SLink *p=sq,*q;
if(i<1 || i>GetLength(sq))
return 0;
else if(i==1)
{
if(GetLength(sq)==1)
{q=sq;free(q);
sq=NULL;}
else
{
while(j<GetLength(sq))
{
p=p->next;j++;
}
q=sq;
p->next=q->next;
sq=q->next;
free(q);
return 1;
}
}
else
{
while(j<i-1)
{
p=p->next;j++;
}
q=p->next;
p->next=q->next;
free(q);
return 1;
}
}

void main()
{
int n;
cout << "n=";
cin >> n;
int m;
cout <<"m=";
cin >> m;
SLink *sq ;
SLink *people = (SLink *)malloc(sizeof(SLink));
people->number=1;
cout << "people->password=" ;
cin >> people->password;
people->next=people;
SLink *lq =people;
for(int i=1;i<n;i++)
{
sq =(SLink *)malloc(sizeof(SLink));
sq->number =i+1;
cout <<"sq->password=";
cin >> sq->password;
lq->next =sq;
sq->next =people;
lq = sq;
}
DelElem(people,1);
for(sq=people;sq->next!=people;sq=sq->next)
{

cout << sq->number;
//cout << sq->next;
}
cout << sq->number;
}
哪位高手能帮帮我为什么是死循环
2#
发表于 2009-11-3 01:47:11 | 只看该作者
能不能加点注释,看着就晕!
回复 支持 反对

使用道具 举报

3#
发表于 2009-11-3 01:47:13 | 只看该作者
楼主程序的目标是什么?或说是为了完成什么功能而编的?
回复 支持 反对

使用道具 举报

4#
发表于 2009-11-3 01:47:15 | 只看该作者
这应该到C语言版去...
死循环就是当进入了循环后..就永远不终止地执行下去....
回复 支持 反对

使用道具 举报

5#
发表于 2009-11-3 01:47:17 | 只看该作者
不是死循环
是你while(j<GetLength(sq))
{
p=p->next;j++;
}
q=sq;
p->next=q->next;
sq=q->next;
free(q);//释放了没有把剩下的连接起来,以至后来输出时,输出非法内存空间(对不起,没时间读你代码了,自己把q前面的与后面的连上吧)
return 1;
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 16:51 , Processed in 0.080142 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表