摘要: static class Node { int val; Node next; public Node(int val, Node next) { this.val = val; this.next = next; } } static Node reverse(Node head) { if (h 阅读全文
posted @ 2022-01-20 15:29 dxyoung 阅读(70) 评论(0) 推荐(0)