FDS-Exercise
0 写在前面
第一次quiz有点依托,这里总结一下各种练习题
#1 逆转链表
Problem
1 | typedef struct Node *PtrToNode; |
The function Reverse is supposed to return the reverse linked list of L, with a dummy header.
1 | List Reverse(List L); |
Solution
1 | List Reverse(List L) |
- Title: FDS-Exercise
- Author: Hare Fuyukawa
- Created at : 2026-03-25 10:29:39
- Updated at : 2026-03-25 18:22:25
- Link: https://redefine.ohevan.com/Data-Structure/DS/FDS-Exercise/
- License: This work is licensed under CC BY-NC-SA 4.0.
Comments