美文网首页
LintCode问题图解-24

LintCode问题图解-24

作者: billliu_0d62 | 来源:发表于2017-11-02 16:27 被阅读0次

    本文准备讲解1个简单的算法编程问题, 这个算法编程问题来自LintCode平台。不了解.LintCode平台的读者可以阅读笔者文章(在线编程平台推荐-LeetCode)。问题的英文版本描述如下:

    Reverse Linked List

    Reverse a linked list.

    Example

    For a linked list 1->2->3, the reversed linked list is 3->2->1.

    翻转链表

    翻转1个链表

    样例

    给出1个链表 1->2->3,翻转后的链表为 3->2->1.

    1 种简单高效的算法:

    简单高效的算法

    标准的算法:

    标准的算法

    相关文章

      网友评论

          本文标题:LintCode问题图解-24

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