BM1.[反转链表]

alt

https://www.nowcoder.com/exam/oj?tab=%E7%AE%97%E6%B3%95%E7%AF%87&topicId=295

BM1.反转链表

https://www.nowcoder.com/practice/75e878df47f24fdc9dc3e400ec6058ca?tpId=295&sfm=github&channel=nowcoder

题目分析

翻转链表这个题目,我建议第一个刷,最基本的链表写得滚瓜烂熟,因为我们后面要使用这个翻转链表函数。其实很多题目拆解开来之后你会发现都是在解决局域小问题。

alt

做法分解

翻转链表肯定会有一个pre遍历连接节点,最后pre节点被赋值到最后一个不为空的cur节点。作为翻转值

public ListNode ReverseList(ListNode head) {
    if(head == null)
    return head;
    ListNode pre = null;
    ListNode cur = head;

    return pre;
}

循环过程中因为要进行翻转,改变cur.next所以要提前记录cur.next,然后进行翻转,然后移动赋值指针。其实有点像交换函数swap。不妨先写一个交换值的swap函数。

while(cur != null){
    ListNode next = cur.next;
    cur.next = pre;
    pre = cur;
    cur = next;
}

完整题解

 public ListNode ReverseList(ListNode head) {
      if(head == null)
    return head;
  ListNode pre = null;
  ListNode cur = head;
  while(cur != null){
    ListNode next = cur.next;
    cur.next = pre;
    pre = cur;
    cur = next;
}
  return pre;
    }

复杂度分析:

  • 时间复杂度:为链表的长度,一次遍历
  • 空间复杂度:,没有使用新的额外空间

alt

#面经##题解##面试题目#
全部评论

相关推荐

Noel_:中石油是这样的 哥们侥幸混进免笔试名单 一看给我吓尿了
点赞 评论 收藏
分享
害怕一个人的小黄鸭胖乎乎:笑死了,没有技术大牛,招一堆应届生,不到半年,代码就成屎山了
点赞 评论 收藏
分享
点赞 1 评论
分享
牛客网
牛客企业服务