问题

该文章的最新版本已迁移至个人博客【比特飞】,单击链接 https://www.byteflying.com/archives/3836 访问。

给定一个带有头结点 head 的非空单链表,返回链表的中间结点。

如果有两个中间结点,则返回第二个中间结点。

输入:[1,2,3,4,5]

输出:此列表中的结点 3 (序列化形式:[3,4,5])

返回的结点值为 3 。 (测评系统对该结点序列化表述是 [3,4,5])。注意,我们返回了一个 ListNode 类型的对象 ans,这样:ans.val = 3, ans.next.val = 4, ans.next.next.val = 5, 以及 ans.next.next.next = NULL.

输入:[1,2,3,4,5,6]

输出:此列表中的结点 4 (序列化形式:[4,5,6])

由于该列表有两个中间结点,值分别为 3 和 4,我们返回第二个结点。

提示:

给定链表的结点数介于 1 和 100 之间。


Given a non-empty, singly linked list with head node head, return a middle node of linked list.

If there are two middle nodes, return the second middle node.

Input: [1,2,3,4,5]

Output: Node 3 from this list (Serialization: [3,4,5])

The returned node has value 3.  (The judge's serialization of this node is [3,4,5]).Note that we returned a ListNode object ans, such that:ans.val = 3, ans.next.val = 4, ans.next.next.val = 5, and ans.next.next.next = NULL.

Input: [1,2,3,4,5,6]

Output: Node 4 from this list (Serialization: [4,5,6])

Since the list has two middle nodes with values 3 and 4, we return the second one.

Note:

The number of nodes in the given list will be between 1 and 100.


示例

该文章的最新版本已迁移至个人博客【比特飞】,单击链接 https://www.byteflying.com/archives/3836 访问。

public class Program {

    public static void Main(string[] args) {
var head = new ListNode(1) {
next = new ListNode(2) {
next = new ListNode(3) {
next = new ListNode(4)
}
}
}; var res = MiddleNode(head);
ShowArray(res); res = MiddleNode2(head);
ShowArray(res); Console.ReadKey();
} private static void ShowArray(ListNode list) {
var node = list;
while(node != null) {
Console.Write($"{node.val} ");
node = node.next;
}
Console.WriteLine();
} private static ListNode MiddleNode(ListNode head) {
//暴力解法
var count = 0;
var node = head;
while(node != null) {
count++;
node = node.next;
}
var mid = count / 2;
node = head;
var index = 0;
while(node != null && index++ < mid) {
node = node.next;
}
return node;
} private static ListNode MiddleNode2(ListNode head) {
//快慢双指针
var slow = head;
var fast = head;
while(fast != null && fast.next != null) {
fast = fast.next.next;
slow = slow.next;
}
return slow;
} public class ListNode {
public int val;
public ListNode next;
public ListNode(int x) { val = x; }
} }

以上给出2种算法实现,以下是这个案例的输出结果:

该文章的最新版本已迁移至个人博客【比特飞】,单击链接 https://www.byteflying.com/archives/3836 访问。

3 4
3 4

分析:

显而易见,以上2种算法的时间复杂度均为: 

最新文章

  1. Ember.js 应用入口
  2. ECharts分析xdebug跟踪日志
  3. Mybatis like 模糊查询问题
  4. javascript js表示中文日期的经典写法
  5. [解决方案] 当 IDENTITY_INSERT 设置为 OFF 时
  6. SpringMVC + Spring + MyBatis 学习笔记:提交数据遭遇基础类型和日期类型报400错误解决方法
  7. Error In Work
  8. 上传图片到文件夹并显示在GridView控件里面
  9. js之date()对象
  10. Flutter项目之app升级方案
  11. linux网络编程基础--(转自网络)
  12. 异象石(就是sdio宝藏那题)
  13. 前端布局神器display:flex
  14. [Bayes] Understanding Bayes: Visualization of the Bayes Factor
  15. Mongo如何导出 CSV文件
  16. sqoop导入导出对mysql再带数据库test能跑通用户自己建立的数据库则不行
  17. Object_C初始化方法, 遍历构造器
  18. Spring 之 IOC
  19. lnmp环境 开启pathinfo
  20. linux 命令 sort

热门文章

  1. Porter 进入 CNCF 云原生全景图,新版本即将发布!
  2. 浅谈6种JS数组遍历方法的区别
  3. 网易邮箱如何使用二次验证码/谷歌身份验证器/两步验证/虚拟MFA?
  4. python-多任务编程03-迭代器(iterator)
  5. 全栈的自我修养: 0005 Java 包扫描实现和应用(Jar篇)
  6. e的存在性证明和计算公式的证明
  7. 完成的设备扫描项目的几个关键程序,包括activity之间的转换
  8. scrapy基本用法
  9. 移动端宽高适配JS
  10. 将形如 5D, 30s 的字符串转为秒