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;
        }
全部评论

相关推荐

jack_miller:杜:你不用我那你就用我的美赞臣
点赞 评论 收藏
分享
jack_miller:我给我们导员说我不在这里转正,可能没三方签了。导员说没事学校催的时候帮我想办法应付一下
点赞 评论 收藏
分享
2 收藏 评论
分享
牛客网
牛客企业服务