查找单链表中间值

#ifndef _SEARCH_H_
#define _SEARCH_H_
#include "Search.h"
template<class DataType>
struct Node
{
DataType data;
Node<DataType> *next;
};
template<class DataType>
class Search
{
public:
Search(DataType a[],int n);
~Search();
DataType search();
void Print();
private:
Node<DataType> *first;
};
template<class DataType>
Search<DataType>::Search(DataType a[],int n)
{
Node<DataType> *s,*p;
first=new Node<DataType>;
p=first;
for(int i=0;i<n;++i)
{
s=new Node<DataType>;
s->data=a[i];
p->next=s;
p=s;
}
p->next=NULL;
}
template<class DataType>
Search<DataType>::~Search()
{
Node<DataType> *p;
while(first->next!=NULL)
{
p=first->next;
first->next=(*p).next;
delete p;
}
}
template<class DataType>
DataType Search<DataType>::search()
{
Node<DataType> *sp,*dp; //sp是慢指针,dp是快指针
DataType x;
sp=first; //快慢指针都在头结点出发
dp=first;
while(dp->next!=NULL) //当快指针为空时,结束扫描,此时慢指针指向中间节点
{
sp=sp->next;
dp=dp->next->next;
}
x=sp->data;
return x;
}
template<class DataType>
void Search<DataType>::Print()
{
Node<DataType> *p;
p=first->next;
while(p!=NULL) //此处是p!=NULL,而不是p->next!=NULL
{
cout<<p->data<<"  ";
p=p->next;
}
cout<<endl;
}

#endif





/*
输出未知长度的单链表的中间值;
方法一:扫描单链表。得到单链表的长度
方法二:设置快慢指针,快指针的扫描速度是慢指针的扫描速度的两倍
*/
#include<iostream>
#include"Search.h"
using namespace std;
int main()
{
int a[]={1,2,3,4,5,6};
Search<int> A(a,6);
A.Print();
int result=A.search();
cout<<result<<endl;
system("Pause");
return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值