循环链表的创建及遍历

http://blog.csdn.net/v_yang_guang_v/article/details/44906729

[cpp]  view plain  copy
  1. #include  
  2. using namespace std;  
  3.   
  4. typedef int ElemType;  
  5.   
  6. typedef struct Node  
  7. {  
  8.     ElemType elem;  
  9.     struct Node *next;   
  10. }Node,*linklist;  
  11.   
  12. //创建循环链表  
  13. Node *createList(Node *head,int n)  
  14. {  
  15.     Node *p;  
  16.     for(int i=1;i<=n;i++)  
  17.     {  
  18.         p=(Node*)malloc(sizeof(Node));  
  19.         ElemType a;  
  20.         if(!p)  
  21.         {  
  22.             cout<<"内存分配失败"<
  23.             exit(0);  
  24.         }  
  25.         cin>>a;  
  26.         p->elem=a;  
  27.         p->next=head->next;  
  28.         head->next=p;  
  29.     }  
  30.     return head;  
  31. }  
  32.   
  33.   
  34. //遍历循环链表  
  35. void printList(Node *head)  
  36. {  
  37.     Node *p;  
  38.     p=head->next;  
  39.     while(p!=head)  
  40.     {  
  41.         cout<elem<
  42.         p=p->next;  
  43.     }  
  44. }  
  45.   
  46. void main()  
  47. {  
  48.     Node *head,*p,*q;  
  49.     head=(Node*)malloc(sizeof(Node));  
  50.     if(!head)  
  51.     {  
  52.         cout<<"内存分配失败"<
  53.         exit(0);  
  54.     }  
  55.     head->next=head;  
  56.     createList(head,4);  
  57.     printList(head);  
  58.     system("pause");  
  59. }  

你可能感兴趣的:(数据结构与算法)