1025 反轉鍊錶 25

2021-07-05 04:19:39 字數 1713 閱讀 4295

給定乙個常數k以及乙個單鏈表l,請編寫程式將l中每k個結點反轉。例如:給定l為1→2→3→4→5→6,k為3,則輸出應該為3→2→1→6→5→4;如果k為4,則輸出應該為4→3→2→1→5→6,即最後不到k個元素不反轉。

輸入格式:

每個輸入包含1個測試用例。每個測試用例第1行給出第1個結點的位址、結點總個數正整數n(<= 105)、以及正整數k(<=n),即要求反轉的子鏈結點的個數。結點的位址是5位非負整數,null位址用-1表示。

接下來有n行,每行格式為:

address data next

其中address是結點位址,data是該結點儲存的整數資料,next是下一結點的位址。

輸出格式:

對每個測試用例,順序輸出反轉後的鍊錶,其上每個結點佔一行,格式與輸入相同。

輸入樣例:

00100 6 4

00000 4 99999

00100 1 12309

68237 6 -1

33218 3 00000

99999 5 68237

12309 2 33218

輸出樣例:
00000 4 33218

33218 3 12309

12309 2 00100

00100 1 99999

99999 5 68237

68237 6 -1

//這道題是在陳越、何欽銘老師的資料結構課中有詳細的講解

//這道題的要注意的是一定要當做乙個煉表處理,盡量不要使用vector儲存所有結構然後排序,容易超時,另外使用cout也容易超時

#include #include #include using namespace std;

struct node

};node list[100000];

void reverserlist(node *head, int k, int n,int c)

int cnt = 1;

node *nu = head->next;

node *old = nu->next;

node * tmp = old->next;;

while (cnt < k)

head->next->next = old;

head->next = nu;

tmp = nu;

for (int i = 0; i < k-1; ++i)

reverserlist(tmp, k, n, c+1);

}int main()

else

int hash = atoi(address.c_str());

list[hash] = tmp;

} node *p = head.next;

int cnt = 1;

while (p->next != null)

cnt /= k;

reverserlist(&head, k, cnt, 0);

p = head.next;

while (true)

printf("%s %d %s\n", p->address.c_str(), p->data,p->next->address.c_str());

p = p->next;

} system("pause");

return 0;

}

1025 反轉鍊錶 25

給定乙個常數k以及乙個單鏈表l,請編寫程式將l中每k個結點反轉。例如 給定l為1 2 3 4 5 6,k為3,則輸出應該為3 2 1 6 5 4 如果k為4,則輸出應該為4 3 2 1 5 6,即最後不到k個元素不反轉。輸入格式 每個輸入包含1個測試用例。每個測試用例第1行給出第1個結點的位址 結點...

1025 反轉鍊錶 25

define crt secure no warnings include include include include include include using namespace std int main int p start stacks,q 之前的想法中,每滿足k個,就輸出棧內的元素和...

1025 反轉鍊錶 25

時間限制 300 ms 記憶體限制 65536 kb 長度限制 8000 b 判題程式 standard 作者 chen,yue 給定乙個常數k以及乙個單鏈表l,請編寫程式將l中每k個結點反轉。例如 給定l為1 2 3 4 5 6,k為3,則輸出應該為3 2 1 6 5 4 如果k為4,則輸出應該為...