写出程序把一个链表中的接点顺序倒排

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;
  


相关内容:

  1. 华为慧通笔试题
  2. 阿尔卡特(中国)的面试题目
  3. 阿尔卡特(中国)的面试题目
  4. 一套VC试题
  5. 普天C++笔试题
  6. 判断单链表中是否存在环