4_1_2.C
上传用户:wyn840322
上传日期:2007-01-13
资源大小:294k
文件大小:3k
源码类别:

数据结构

开发平台:

C/C++

  1. /* ======================================== */
  2. /*    程式实例: 4_1_2.c                   */
  3. /*    环状链结串列内节点插入                */
  4. /* ======================================== */
  5. #include <stdlib.h>
  6. struct clist                      /* 环状串列结构宣告     */
  7. {
  8.    int data;                      /* 节点资料             */
  9.    struct clist *next;            /* 指向前一节点的指标   */
  10. };
  11. typedef struct clist cnode;       /* 环状串列新型态       */
  12. typedef cnode *clink;             /* 环状串列指标新型态   */
  13. /* ---------------------------------------- */
  14. /*  环状链结串列的列印                      */
  15. /* ---------------------------------------- */
  16. void printclist(clink head)
  17. {
  18.    clink ptr;
  19.    ptr = head;                    /* 指向串列开始         */
  20.    do                             /* 串列走访回路         */
  21.    {
  22.       printf("[%d]",ptr->data);   /* 列印节点资料         */
  23.       ptr = ptr->next;            /* 指向下一个节点       */
  24.    } while ( head != ptr && head != head->next );
  25.    printf("n");                  /* 换行                 */
  26. }
  27. /* ---------------------------------------- */
  28. /*  环状链结串列的节点插入                  */
  29. /* ---------------------------------------- */
  30. clink insertnode(clink head,clink ptr,int value)
  31. {
  32.    clink new_node;                /* 新节点的指标         */
  33.    clink previous;                /* 前一节点指标         */
  34.    /* 建立新节点配置节点记忆体 */
  35.    new_node = ( clink ) malloc(sizeof(cnode));
  36.    if ( !new_node )               /* 检查记忆体指标       */
  37.       return NULL;
  38.    new_node->data = value;        /* 建立节点内容         */
  39.    new_node->next = NULL;         /* 设定指标初值         */
  40.    if ( head == NULL )            /* 如果串列是空的       */
  41.    {
  42.       new_node->next = new_node;  /* 指向自身节点         */
  43.       return new_node;            /* 传回新节点指标       */
  44.    }
  45.    if ( ptr == NULL )
  46.    {
  47.       /* 第一种情况: 插在第一节点之前且成为串列开始 */
  48.       new_node->next = head;
  49.       previous = head;
  50.       while ( previous->next != head ) /* 找最後一个节点  */
  51.          previous = previous->next;    /* 指向下一个节点  */
  52.       previous->next = new_node;  /* 前一节点指向新节点   */
  53.       head = new_node;            /* 成为串列的开始       */
  54.    }
  55.    else
  56.    {
  57.       /* 第二种情况: 插在节点之後 */
  58.       new_node->next = ptr->next; /* 新节点指向下一节点   */
  59.       ptr->next = new_node;       /* 前一节点指向新节点   */
  60.    }
  61.    return head;                   /* 传回串列起始指标     */
  62. }
  63. /* ---------------------------------------- */
  64. /*  主程式:                                 */
  65. /*  使用插入节点的方式来建立串列, 完成後将  */
  66. /*  串列内容印出.                           */
  67. /* ---------------------------------------- */
  68. void main()
  69. {
  70.    clink head = NULL;             /* 环状链结串列指标     */
  71.    int list[6] = { 1, 2, 3, 4, 5, 6 };   /* 阵列内容      */
  72.    int i;
  73.    head = insertnode(head,head,list[0]); /*建立第一个节点*/
  74.    printclist(head);             /* 印出串列             */
  75.    /* 第一种情况: 插在第一节点之前且成为串列开始 */
  76.    head = insertnode(head,NULL,list[1]);
  77.    printclist(head);             /* 印出串列             */
  78.    for ( i = 2; i < 6; i++ )      /* 建立串列节点         */
  79.    {
  80.       /* 第二种情况: 插在第一节点之後 */
  81.       head = insertnode(head,head,list[i]);
  82.       printclist(head);          /* 印出串列             */
  83.    }
  84. }