玩鍊錶 oj

2021-08-15 02:45:08 字數 643 閱讀 5883

time limit: 1000ms

memory limit: 65536kb

problem description

blue 獲得了乙個含有 n 個數的初始鍊錶,現在他要把另外的一些數插入到鍊錶的開頭。你能幫他完成嗎?

input

輸入資料有多組(資料組數不超過 20),到 eof 結束。

對於每組資料:

output

對於每組資料中的每次輸出操作,在 1 行中輸出當前鍊錶,數字之間用空格隔開,行尾沒有多餘的空格。

example input

3 5

1 2 350

409

example output

5 1 2 3

4 5 1 2 3

hint

author

【2016級《程式設計基礎(b)ii》期末上機考試-補測】blue

#include #include struct node

;int main()

for(i = 0;i < m;i++)

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

}else}}

return 0;

}

鍊錶問題(OJ

相比前面的鍊錶函式中我做了點小小的改變 description 已知長度為n的線性表a採用順序儲存結構,請寫一時間複雜度為0 n 空間複雜度為0 1 的演算法,該演算法刪除線性表中所有值為item的資料元素。o 1 表示演算法的輔助空間為常量 input 輸入 n 6 輸入資料 1 2 3 4 5 ...

C 鍊錶 木有用,寫著玩

移除最後乙個的節點 使用二級指標更好 int removefromlast node firstlocation if head next null node current head while current next next null free current next current ne...

師 鍊錶的結點插入 oj

time limit 1000ms memory limit 65536kb problem description 給出乙個只有頭指標的鍊錶和 n 次操作,每次操作為在鍊錶的第 m 個元素後面插入乙個新元素x。若m 大於鍊錶的元素總數則將x放在鍊錶的最後。input 多組輸入。每組資料首先輸入乙個...