写出程序把一个链表中的接点顺序倒排
2023-07-06
typedef struct linknode
int data;
struct linknode *next;
node;
//将一个链表逆置
node *reverse(node *head)
node *p,*q,*r;
p=head;
q=p->next;
while(q!=NULL)
r=q->next;
q->next=p;
p=q;
q=r;
head->next=NULL;
head=p;
return head;
写出程序把一个链表中的接点顺序倒排2023-07-06 typedef struct linknode int data; struct linknode *next; node; //将一个链表逆置 node *reverse(node *head) node *p,*q,*r; p=head; q=p->next; while(q!=NULL) r=q->next; q->next=p; p=q; q=r; head->next=NULL; head=p; return head; 相关内容: |