当前位置:   article > 正文

BJFU 251递归求解单链表中的最大值_递归求单链表最大元素

递归求单链表最大元素

递归求解单链表中的最大值(很简便的方法!nice)

#include <iostream>
using namespace std;

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

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

//尾插建表(带头结点)
void Creatlist(Linklist &L,int e){
	Lnode *p=new Lnode;
	p->data=e;
	p->next=NULL;
	
	Lnode *cur=L;
	while(cur->next){
		cur=cur->next;
	}
	cur->next=p;
	p->next=NULL;
}

int Findmax(Linklist &L){
  if(L->next==NULL) 
   return L->data; //终止条件(只有头结点)
   
   int max=L->next->data; //设 第一个结点 最大
   
   if(max>Findmax(L->next)) //正式递归
         return max;
   else
    return Findmax(L->next);

}

int main(){
	int n;
	while(cin>>n&&n!=0){
		Linklist L;
		Initlist(L);//初始化 
		for(int i=0;i<n;i++){ //建表  
			 int e; cin>>e;
			 Creatlist(L,e);
		}
		cout<<Findmax(L)<<endl;
	}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小舞很执着/article/detail/852765
推荐阅读
相关标签
  

闽ICP备14008679号