摘要: 链表的类通常表示如下: public class ListNode { public int val; public ListNode next; public ListNode(int val, ListNode next=null) { this.val = val; this.next = n 阅读全文
posted @ 2021-05-22 09:50 南风小斯 阅读(54) 评论(0) 推荐(0) 编辑