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

2021-09-01 11:35:53 字數 831 閱讀 2535

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

不得使用陣列!

**:#include

using namespace std;

struct node{

int data;

struct node *next;

int main (){

struct node *head,*p,*q;

int n;

head=new node;

head->next=null;

p=head;

scanf ("%d",&n);

while (n--){

q=new node;

scanf ("%d",&q->data);

q->next=null;

p->next=q;

p=q;

q=head->next;

while (q!=null){

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

if (q!=null)printf (" ");

else printf ("\n");

q=q->next;

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

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

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

好久都沒有寫部落格了,這次做乙個簡單的鍊錶題,找找感覺。輸入n個整數,按照輸入的順序建立單鏈表儲存,並遍歷所建立的單鏈表,輸出這些資料。第一行輸入整數的個數n 第二行依次輸入每個整數。輸出這組整數。8 12 56 4 6 55 15 33 62 12 56 4 6 55 15 33 62 不得使用陣...

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

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