這篇文章主要為大家詳細(xì)介紹了反轉(zhuǎn)單鏈表的方法有哪些,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,發(fā)現(xiàn)的小伙伴們可以參考一下:
創(chuàng)新互聯(lián)自2013年起,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元靈丘做網(wǎng)站,已為上家服務(wù),為靈丘各地企業(yè)和個人服務(wù),聯(lián)系電話:18980820575
1 ,兩兩對換
2, 放入數(shù)組,倒置數(shù)組
3, 遞歸實(shí)現(xiàn)
代碼如下:
#include#include typedef struct Node { int data; struct Node *pnext; } Node,*pnode; pnode CreateNode() { pnode phead=(pnode)malloc(sizeof(Node)); if(phead==NULL) { printf("fail to allocate memory"); return -1; } phead->pnext=NULL; int n; pnode ph=phead; for(int i=0; i<5; i++) { pnode p=(pnode)malloc(sizeof(Node)); if(p==NULL) { printf("fail to allocate memory"); return -1; } p->data=(i+2)*19; phead->pnext=p; p->pnext=NULL; phead=phead->pnext; } return ph; } int list(pnode head) { int count=0; printf("遍歷結(jié)果:\n"); while(head->pnext!=NULL) { printf("%d\t",head->pnext->data); head=head->pnext; count++; } printf("鏈表長度為:%d\n",count); return count; } pnode reverse2(pnode head)//兩兩節(jié)點(diǎn)之間不斷交換 { if(head == NULL || head->next == NULL) return head; pnode pre = NULL; pnode next = NULL; while(head != NULL){ next = head->next; head->next = pre; pre = head; head = next; } return pre; } void reverse1(pnode head,int count)//把鏈表的節(jié)點(diǎn)值放在數(shù)組中,倒置數(shù)組 { int a[5]= {0}; for(int i=0; i pnext!=NULL; i++) { a[i]=head->pnext->data; head=head->pnext; } for(int j=0,i=count-1; j pnext = pre; if(t == NULL) return cur; //返回?zé)o頭節(jié)點(diǎn)的指針,遍歷的時候注意 reverse3(cur,t,t->pnext); } pnode new_reverse3(pnode head){ //新的遞歸轉(zhuǎn)置 if(head == NULL || head->next == NULL) return head; pnode new_node = new_reverse3(head->next); head->next->next = head; head->next = NULL; return new_node; //返回新鏈表頭指針 } int main() { pnode p=CreateNode(); pnode p3=CreateNode(); int n=list(p); printf("1反轉(zhuǎn)之后:\n"); reverse1(p,n); printf("\n"); printf("2反轉(zhuǎn)之后:\n"); pnode p1=reverse2(p); list(p1); p3 -> pnext = reverse3(NULL,p3 -> pnext,p3->pnext->pnext); printf("3反轉(zhuǎn)之后:\n"); list(p3); free(p); free(p1); free(p3); return 0; }
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。