当前位置:网站首页>876. 链表的中间结点
876. 链表的中间结点
2022-07-04 17:39:00 【charlsdm】
- 链表的中间结点
给定一个头结点为 head 的非空单链表,返回链表的中间结点。
如果有两个中间结点,则返回第二个中间结点。
示例 1:
输入:[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.
示例 2:
输入:[1,2,3,4,5,6]
输出:此列表中的结点 4 (序列化形式:[4,5,6])
由于该列表有两个中间结点,值分别为 3 和 4,我们返回第二个结点。
提示:
给定链表的结点数介于 1 和 100 之间。
下面附上我的AC代码
public partial class Solution
{
public ListNode MiddleNode(ListNode head)
{
ListNode[] listNodes = new ListNode[100];
int index = 0;
while(head!=null)
{
listNodes[index] = head;
head = head.next;
index = index + 1;
}
return listNodes[(index)/2];
}
}
边栏推荐
- Halcon template matching
- 1、 Introduction to C language
- [mathematical modeling of graduate students in Jiangxi Province in 2022] analysis and code implementation of haze removal by nucleation of water vapor supersaturation
- 字节跳动Dev Better技术沙龙成功举办,携手华泰分享Web研发效能提升经验
- 神经网络物联网平台搭建(物联网平台搭建实战教程)
- Scala基础教程--18--集合(二)
- Using FTP
- 使用SSH
- 国元期货是正规平台吗?在国元期货开户安全吗?
- [2022 Jiangxi graduate mathematical modeling] curling movement idea analysis and code implementation
猜你喜欢

力扣刷題日記/day6/6.28

Wanghongru research group of Institute of genomics, Chinese Academy of Agricultural Sciences is cordially invited to join
![[go ~ 0 to 1] read, write and create files on the sixth day](/img/cb/b6785ad7d7c7df786f718892a0c058.png)
[go ~ 0 to 1] read, write and create files on the sixth day

Process of manually encrypt the mass-producing firmware and programming ESP devices

Li Kou brush question diary /day2/2022.6.24

Li Kou brush question diary /day7/6.30

Lex and yacc based lexical analyzer + parser

力扣刷题日记/day4/6.26

Go微服务(二)——Protobuf详细入门

一种将Tree-LSTM的强化学习用于连接顺序选择的方法
随机推荐
MXNet对GoogLeNet的实现(并行连结网络)
神经网络物联网平台搭建(物联网平台搭建实战教程)
Scala基础教程--18--集合(二)
1、 Introduction to C language
Scala基础教程--12--读写数据
Rookie post station management system based on C language
Cache é JSON uses JSON adapters
问下各位大佬有用过cdc直接mysql to clickhouse的么
Uni app and uviewui realize the imitation of Xiaomi mall app (with source code)
力扣刷题日记/day5/2022.6.27
What types of Thawte wildcard SSL certificates provide
Crawler (6) - Web page data parsing (2) | the use of beautifulsoup4 in Crawlers
Scala basic tutorial -- 12 -- Reading and writing data
ByteDance dev better technology salon was successfully held, and we joined hands with Huatai to share our experience in improving the efficiency of web research and development
[2022 Jiangxi graduate mathematical modeling] curling movement idea analysis and code implementation
Angry bird design based on unity
中国农科院基因组所汪鸿儒课题组诚邀加入
Perfect JS event delegation
Lex and yacc based lexical analyzer + parser
Using SSH