程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 采用頭插插法和尾插法建立單項鏈表

采用頭插插法和尾插法建立單項鏈表

編輯:C++入門知識

PS: 來源2014年數據結構聯考復習指導 Page27.

#include 
#include 
#include 
using namespace std;
const int END_INPUT = -1;
typedef struct LNode {
    int data;
    struct LNode *next;
}LNode, *LinkList;

LinkList CreatList1(LinkList &L) {
    LinkList s;  //LNode *s;
    int x;
    L = (LNode*)malloc(sizeof(LNode));//L = (LinkList)malloc(sizeof(LNode));
    L -> next = NULL;
    scanf("%d", &x);
    while(x!=END_INPUT) {
        s = (LNode*) malloc(sizeof(LNode));
        s->data = x;
        s->next = L->next;
        L->next = s;
        scanf("%d", &x);
    }
    return L;
}

LinkList CreatList2(LinkList &L) {
    int x;
    L = (LinkList)malloc(sizeof(LNode));
    LNode *s, *r = L;
    scanf("%d", &x);
    while(x != END_INPUT) {
        s = (LinkList)malloc(sizeof(LNode));
        s->data = x;
        r->next = s;
        r = s;
        scanf("%d", &x);
    }
    r->next = NULL;
    return L;
}

void out_put_content(LinkList &L) {
    LinkList p = L;
    while(p->next != NULL) {
        printf("%d->", p->next->data);
        p = p->next;
    }
}

int main()
{
    LinkList head1, head2; //LNode *L;
    CreatList1(head1);
    printf("List1:\n");
    out_put_content(head1);
    printf("\n");
    printf("List2:\n");
    CreatList2(head2);
    out_put_content(head2);
    return 0;
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved