码迷,mamicode.com
首页 > 其他好文 > 详细

876. 链表的中间结点

时间:2021-06-16 18:35:48      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:中间   code   return   bre   for   count   middle   span   color   

 1 /**
 2  * Definition for singly-linked list.
 3  * struct ListNode {
 4  *     int val;
 5  *     struct ListNode *next;
 6  * };
 7  */
 8 
 9 
10 struct ListNode* middleNode(struct ListNode* head){
11     int count = 0;
12     struct ListNode *p = head;
13     while(p)
14     {
15         count++;
16         p=p->next;
17     }
18 
19     int index = count/2+1;
20     count = 0;
21     while(head)
22     {
23         count++;
24         if(count==index){
25             break;
26         }
27 
28         head = head->next;
29     }
30 
31     return head;
32 
33 
34 }

 

876. 链表的中间结点

标签:中间   code   return   bre   for   count   middle   span   color   

原文地址:https://www.cnblogs.com/Knightl8/p/14889800.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!