2116 資料結構實驗之鍊表一 順序建立鍊錶

2021-08-21 08:10:30 字數 710 閱讀 7440

資料結構實驗之鍊表一:順序建立鍊錶

time limit: 1000 ms memory limit: 65536 kib

submit statistic discuss

problem description

輸入n個整數,按照輸入的順序建立單鏈表儲存,並遍歷所建立的單鏈表,輸出這些資料。

input

第一行輸入整數的個數n;

第二行依次輸入每個整數。

output

輸出這組整數。

sample input

8 12 56 4 6 55 15 33 62

sample output

12 56 4 6 55 15 33 62

hint

不得使用陣列!

source

#include

#include

struct node

;struct node*create(int n)

return head;

}void print(struct node*head)

else

printf(" %d",p->data);

p=p->next;//注意這裡容易死迴圈,不寫這句話的話

}printf("\n");

}int main()

資料結構實驗之鍊表一 順序建立鍊錶 2116

problem description 輸入n個整數,按照輸入的順序建立單鏈表儲存,並遍歷所建立的單鏈表,輸出這些資料。input 第一行輸入整數的個數n 第二行依次輸入每個整數。output 輸出這組整數。sample input 8 12 56 4 6 55 15 33 62sample out...

資料結構實驗一(鍊錶)

1.seqlist.h ifndef seqlist h define seqlist h const int maxsize 10 class seqlist seqlist int a,int n seqlist void insert int i,int x int delete int i ...

資料結構實驗之鍊表一 順序建立鍊錶

time limit 1000ms memory limit 65536k 輸入n個整數,按照輸入的順序建立單鏈表儲存,並遍歷所建立的單鏈表,輸出這些資料。第一行輸入整數的個數n 第二行依次輸入每個整數。輸出這組整數。8 12 56 4 6 55 15 33 62 12 56 4 6 55 15 3...