以下是引用renkejun1942在2017-4-12 20:35:08的发言:
for( next = RootP->next; next != Root; next = next->next )
;
你这不是正向遍历吗 我说的是双链表的反向遍历
for( next = RootP->next; next != Root; next = next->next )
;
DO IT YOURSELF !
[此贴子已经被作者于2017-4-12 20:43编辑过]