日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

C语言链表为什么倒着输出,关于链表倒着存,正着输出。

發布時間:2023/12/10 编程问答 33 豆豆
生活随笔 收集整理的這篇文章主要介紹了 C语言链表为什么倒着输出,关于链表倒着存,正着输出。 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

該樓層疑似違規已被系統折疊?隱藏此樓查看此樓

題目要求是你輸入a->b->c->d,然后存在內存里,然后改變在內存里的存儲,改成存d->c->b->a,然后輸出還是abcd,能不能就是用一個數組也存一份輸入的,然后用數組修改鏈表里的內容為dcba,然后在倒置鏈表輸出?求幫助修改

#include

#include

#define LEN sizeof(struct fuhao)

struct fuhao

{

char a;

struct fuhao *next;

};

int n;

struct fuhao *creat(void)

{

struct fuhao *head;

struct fuhao *p1,*p2;

n=0;

p1=p2=(struct fuhao *)malloc(sizeof(LEN));

scanf("%c",&p1->a);

head=NULL;

while(p1->a!=NULL)

{

n=n+1;

if(n==1)head=p1;

else p2->next=p1;

p2=p1;

p1=(struct fuhao *)malloc(LEN);

scanf("%c",&p1->a);

}

p2->next=NULL;

return (head);

}

struct fuhao * reverse(struct fuhao *x)

{

struct fuhao *y;

struct fuhao *t;

struct fuhao *r;

if( NULL==x )

return NULL;

t=NULL;

r=NULL, y=x; //(0)

while(y!=NULL)

{

t = y->next; //(1)

y->next = r; //(2)

r = y; //(3)

y = t; //(4)

}

while(r)

{

printf("%c",r);

r=r->next;

}

}

int main()

{

struct fuhao *pt;

pt=creat();

reverse(pt);

}

總結

以上是生活随笔為你收集整理的C语言链表为什么倒着输出,关于链表倒着存,正着输出。的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。