链表的查找---个人笔记

p指针指向首元结点(p=L->next),循环结束条件为p是空。

#include<iostream>
#include<fstream>
#include<string>
#include<cstdio>
using namespace std;

#define ERROR 0

typedef struct LNode {
int data; //结点的数据域
struct LNode *next; //结点的指针域
} LNode, *List; //List为指向结构体LNode的指针类型

void InitList(List &L); //创建链表(带头结点)
void ListInput(List &L, int n); //链表数据的输入
void ListOutput(List L); //输出List
bool LocateElem(List L, int e); //判断List里有没有e这个元素


int main() 
{
int n;//定义链表中输入元素的个数 
int e;
List LA;
InitList(LA);
cin>>n;
ListInput(LA, n);
cin>>e;
if(LocateElem(LA, e))
     cout<<"include";
else cout<<"none";
return 0;
}

void ListInput(List &L, int n) //链表数据的输入
{
int i=1;
List p, r;
r = L;
while (i<=n) {
p = new LNode;
cin >> p->data;
p->next = NULL;
r->next = p;
r = p;
i++;
}
}
void ListOutput(List L) //输出List
{
List p;
p = L->next;
cout << "The List is:"<<endl;
while (p != NULL) {
cout << p->data << " ";
p = p->next;
}
cout << endl;
}

void InitList(List &L) //创建链表
{
L = new LNode;
L->next = NULL;
}
//查找线性表中是否包含元素e
bool LocateElem(List L, int e)
{
    List p;
    InitList(p);
    p=L->next;
    while(p!=NULL)
    {    
        if(p->data==e)
        {
            return true;
        }
        p=p->next;
    }
    return false;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值