美文网首页
单链表反转

单链表反转

作者: 流浪de球 | 来源:发表于2020-02-01 14:56 被阅读0次
        /**
         * 单链表反转
         * @param node 头结点
         * @return 翻转后的头结点,原链表尾节点
         */
        public static Node reverseList(Node node) {
            Node currNode = node;
            Node preNode = null;
            while (currNode != null) {
                Node nextNode = currNode.next;
                currNode.next = preNode;
                preNode = currNode;
                currNode = nextNode;
            }
            return preNode;
        }
    

    相关文章

      网友评论

          本文标题:单链表反转

          本文链接:https://www.haomeiwen.com/subject/bwqxxhtx.html