【文件属性】:
文件名称:c语言编写的链表逆置的总结
文件大小:1.02MB
文件格式:ZIP
更新时间:2013-10-21 04:30:04
链表 逆置
三种不同的方法,挺不错的!
#include
#include
#include
#define N 100
typedef struct SList
{
char data[N]; //字符数组
struct SList *next; //定义链表头指针
}SList,*ListPointer;
/*typedef struct List
{
SList *head;
}List,* ListPointer;
*/
void initList(ListPointer &lp)
{
lp=(SList *)malloc(sizeof(SList));//初始化链表
lp->next=lp; //链表的头指针指向本身,实现链表循环
}
void output(ListPointer lp) // 自定义输出函数
{
SList *ep;
ep=lp;
while(ep->next!=lp) //判定条件 当指针重新指向头指针输出结束
{
ep=ep->next;
printf("%s ",ep->data);
}
}
void revert(ListPointer lp) // 链表的逆置
{
SList *p,*q;
p=lp;q=NULL;lp=NULL;
while(p)
{
q=p->next;
p->next=lp;
lp=p;
p=q;
}
/*方法二
SList *p,*q,*end;
p=lp->next;
q=p->next;
end=p;
while(q!=lp)
{
lp->next=q;
q=q->next;
lp->next->next=p;
p=lp->next;
}
end->next=lp;
*/
}
void add_char(char *p,ListPointer lp) //将输入的字符传递给链表
{
SList * ep;
ep=lp;
while(ep->next!=lp) //判定条件 当指针重新指向头指针输出结束
{
ep=ep->next;
}
ep->next=(SList *)malloc(sizeof(SList)); //开辟空间存储
strcpy(ep->next->data,p); //字符的传递
ep->next->next=lp;
}
void main()
{
ListPointer L;
char str[N];
initList(L);
printf("输入#以结束\n");//确定输入终止条件
while(1)
{
scanf("%s",str);
if(*str=='#') //判定条件
{
break;
}
add_char(str,L);
}
printf("初始序列为:");
output(L);
printf("\n");
revert(L);
printf("逆置后为:");
output(L);
printf("\n");
}
【文件预览】:
链表逆置方法总结
----单链表的倒置()
--------c.dsp(3KB)
--------c.plg(660B)
--------c.cpp(1KB)
--------Debug()
--------c.ncb(41KB)
--------c.dsw(527B)
--------c.opt(48KB)
----单个字符链表倒置()
--------循环链表倒置.opt(48KB)
--------循环链表倒置.dsw(549B)
--------循环链表倒置.ncb(49KB)
--------c.cpp(1KB)
--------Debug()
--------循环链表倒置.dsp(4KB)
--------循环链表倒置.plg(906B)
----字符串链表逆置()
--------链表逆置.ncb(41KB)
--------c.dsp(3KB)
--------c.plg(612B)
--------c.cpp(2KB)
--------Debug()
--------c.ncb(41KB)
--------c.dsw(527B)
--------c.opt(48KB)