一直在路上别回头 level
获赞
1
粉丝
0
关注
8
看过 TA
7
湖北工程学院
2015
Java
IP属地:广东
热爱编程的男人水泥封心一条道走到黑,刻意练习践行者
私信
关注
2023-12-18 00:38
湖北工程学院 Java
0 点赞 评论 收藏
分享
2023-12-15 05:30
已编辑
湖北工程学院 Java
   public static class Node {            public int value;            public Node next;            public Node(int data) {                value = data;            }        }        public static Node reverseLinkedList (Node head){            Node pre = null;            Node next = null;            while (head != null) {                next = head.next;                head.next = pre;                pre = head;                head = next;            }            return pre;        }
0 点赞 评论 收藏
分享
关注他的用户也关注了:
牛客网
牛客企业服务