時間限制
500 ms
記憶體限制
65536 kb
**長度限制
8000 b
判題程式
standard 作者
陳越給定乙個單鏈表 l1→l2→...→ln-1→ln,請編寫程式將鍊錶重新排列為 ln→l1→ln-1→l2→...。例如:給定l為1→2→3→4→5→6,則輸出應該為6→1→5→2→4→3。
輸入格式:
每個輸入包含1個測試用例。每個測試用例第1行給出第1個結點的位址和結點總個數,即正整數n (<= 105)。結點的位址是5位非負整數,null位址用-1表示。
接下來有n行,每行格式為:
address data next
其中address是結點位址;data是該結點儲存的資料,為不超過105的正整數;next是下一結點的位址。題目保證給出的鍊錶上至少有兩個結點。
輸出格式:
對每個測試用例,順序輸出重排後的結果鍊錶,其上每個結點佔一行,格式與輸入相同。
輸入樣例:
00100 6輸出樣例:00000 4 99999
00100 1 12309
68237 6 -1
33218 3 00000
99999 5 68237
12309 2 33218
68237 6 0010000100 1 99999
99999 5 12309
12309 2 00000
00000 4 33218
33218 3 -1
思路:先用乙個結構體記錄,然後放入乙個陣列中,首尾輸出即可
#includeusing namespace std;
struct nodearr[100005];
int ans[100005], ans2[100005];
int main()
int len1 = 0;
for(int i = n; i != -1; i = arr[i].next)
int len2 = len1 - 1; // 用乙個陣列將其首尾輸出
len1 = 0;
for(int i = 0; i < m; i++)
if(len1 == len2)
printf("%05d %d %05d\n", ans[len2], arr[ans[len2]].key, ans[len1]);
len2--;
printf("%05d %d %05d\n", ans[len1], arr[ans[len1]].key, ans[len2]);
len1++;
} return 0;
}
天梯賽L2 022 重排鍊錶
開局一把wa,ac全靠carry.看了大神的提示才知道還有無效結點qaq,不過也就乙個測試點有。發個部落格記錄一下,姥姥這麼厲害的測試資料都能想到也是很佩服,開拓眼界開拓眼界。includeusing namespace std struct nodenode 101000 node2 101000...
天梯賽 L2 022 重排鍊錶 25分
題目描述 給定乙個單鏈表 l1 l2 l n 1 l n 請編寫程式將鍊錶重新排列為 l n l 1 l n 1 l 2 例如 給定l為1 2 3 4 5 6,則輸出應該為6 1 5 2 4 3。輸入格式 每個輸入包含1個測試用例。每個測試用例第1行給出第1個結點的位址和結點總個數,即正整數n 10...
L2 022 重排鍊錶
給定乙個單鏈表 l1 l2 ln 1 ln,請編寫程式將鍊錶重新排列為 ln l1 ln 1 l2 例如 給定l為1 2 3 4 5 6,則輸出應該為6 1 5 2 4 3。每個輸入包含1個測試用例。每個測試用例第1行給出第1個結點的位址和結點總個數,即正整數n 105 結點的位址是5位非負整數,n...