摘要: 题目解析: 单链表 A.next->B B.next->C C.next->D D.next->E A->B->C->D->E 反转后 E->D->C->B->A 手动反转 1、B.next=A 2、C.next=B 3、D.next=C 4、E.next=D 5、A.next=null 6、返回E 阅读全文
posted @ 2022-03-04 12:07 gabin 阅读(28) 评论(0) 推荐(0) 编辑