您的位置:首页 > 科技 > IT业 > 建设银行企业官方网站_邯郸高端网站建设_上海搜索优化推广哪家强_北京网站优化常识

建设银行企业官方网站_邯郸高端网站建设_上海搜索优化推广哪家强_北京网站优化常识

2024/11/16 18:23:08 来源:https://blog.csdn.net/yang_brother/article/details/142502212  浏览:    关键词:建设银行企业官方网站_邯郸高端网站建设_上海搜索优化推广哪家强_北京网站优化常识
建设银行企业官方网站_邯郸高端网站建设_上海搜索优化推广哪家强_北京网站优化常识

题目:LCR 029


解法一

特殊情况:

  1. 给定链表没有节点,返回新节点
  2. 给定链表只有一个节点,将新节点插入,返回给定节点

一般情况:

  1. 新节点插入列表中间:当cur小于等于新节点,且next大于等于新节点
  2. 新节点插入列表头部:遍历到头尾相连部分时,新节点小于等于头节点,则插入二者之间
  3. 新节点插入列表尾部:遍历到头尾相连部分时,新节点大于等于尾节点,则插入二者之间

注意:当cur大于next时,cur为尾节点,next为头节点

    public Node insert(Node head, int insertVal) {Node newNode = new Node(insertVal);if (head == null) {newNode.next = newNode;return newNode;}if (head.next == head) {head.next = newNode;newNode.next = head;return head;}Node cur = head, next = cur.next;while (next != head) {if (cur.val <= insertVal && next.val >= insertVal) break;if (cur.val > next.val && (cur.val <= insertVal || next.val >= insertVal)) {break;}cur = next;next = next.next;}cur.next = newNode;newNode.next = next;return head;}
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com