876. 链表的中间结点

原题链接:力扣
 
solution:
        遍历链表+n/2
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next) : val(x), next(next) {}
* };
*/
class Solution {
public:
ListNode* middleNode(ListNode* head) {
ListNode *dummy = head;
int num = 0;
while(dummy!=NULL){
dummy =

876. 链表的中间结点最先出现在Python成神之路

版权声明:
作者:倾城
链接:https://www.techfm.club/p/25707.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>