摘要: package com.pta.one; /** * 1.链表反转 */ public class ReverseListCopy { static class ListNode { int val; ListNode next; public ListNode(int val, ListNode 阅读全文
posted @ 2021-10-22 21:31 李林林 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-10-22 01:32 李林林 阅读(49) 评论(0) 推荐(0) 编辑
摘要: package com.pta; /** * 1.链表反转 */ public class ReverseList { static class ListNode { int val; ListNode next; public ListNode(int val, ListNode next) { 阅读全文
posted @ 2021-10-22 00:36 李林林 阅读(42) 评论(0) 推荐(0) 编辑