c_cpp 找到给定链表的中间位置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 找到给定链表的中间位置相关的知识,希望对你有一定的参考价值。

//https://www.geeksforgeeks.org/find-length-of-loop-in-linked-list/
#include<iostream>
#include<list>
using namespace std;

struct linked_list {
    int data;
    struct linked_list* next;
};
typedef struct linked_list node;

node* insert(node* head, int n) {
    node* list = (node*)malloc(sizeof(node*));
    list->data=n;
    list->next=head;
    head=list;
    return head;
}

void print(node* head) {
    node* n = head;
    while (n != NULL) {
        cout<< n->data << "->";
        n = n->next;
    }
    cout<< "\n";
}

void FindMiddle (node* head) {
    node *slow=head, *fast=head;
    if (head != NULL) {
        while (fast && fast->next) {
            fast = fast->next->next;
            slow = slow->next;
        }
        cout<< "Middle node is "<< slow->data;
    }
}

int main() {
    int n;
    node* head = NULL;
    while (true) {
        cout<< "Enter the element, enter -9 to stop: ";
        cin>>n;
        if (n==-9)
            break;
        else
            head = insert(head,n);
    }
    print (head);
    FindMiddle (head);
}

以上是关于c_cpp 找到给定链表的中间位置的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 成对交换给定链表的元素

算法总结之 删除链表的中间节点和a/b处的节点(链表中间节点的重要思想)

链表问题----删除链表的中间节点和a/b处的节点

利用快慢指针寻找链表中间节点

2.3 删除链表的中间节点和a/b处的节点

链表876. 链表的中间结点