time limit: 1000 ms memory limit: 65536 kib
submit statistic
problem description
輸入n個整數,按照輸入的順序建立單鏈表儲存,並遍歷所建立的單鏈表,輸出這些資料。
input
第一行輸入整數的個數n;
第二行依次輸入每個整數。
output
輸出這組整數。
sample input
812 56 4 6 55 15 33 62
sample output
12 56 4 6 55 15 33 62
#include "stdio.h"
#includestruct node
; // 先建表頭
int main()
q = head -> next;
while(q != null)
else
q = q -> next; //遍歷
}return 0;
}
資料結構實驗之鍊表一 順序建立鍊錶
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...