BJFU 230查找链表中的最大值

#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include<queue>
using namespace std;


//结点
typedef struct Lnode {
	int data;
	struct Lnode *next;
}Lnode, *Linklist;

//尾插
void Creatlist(Linklist &L, int &e) {
	Lnode *p = new Lnode;
	p->data = e;
	p->next = NULL;  //处理新加入节点

	Lnode *cur = L;
	while (cur->next != NULL) {
		cur = cur->next;
	}
	cur->next = p;
	p->next = NULL;

}

//初始化
void Initlist(Linklist &L) {
	L = new Lnode;
	L->next = NULL;
}

//寻找最大值
void Maxnum(Linklist &L1) {
	int max = -100;
	Lnode *p = L1->next;
	while (p)
	{
		if (p->data > max) {
			max = p->data;
		}
		p = p->next;
	}
	printf("%d\n", max);
}


int main() {

	int n;
	while (scanf("%d",&n)!=EOF) {
		if (n == 0) break;
	    Linklist L1;  
		Initlist(L1);

		for (int i = 0; i < n; i++) { //输入数据
			int e;
			cin >> e;
			Creatlist(L1, e);
		}
		 Maxnum(L1);
		
	}

}







  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值