数据结构---课后习题(第一章)

数据结构基础篇

课后习题

第一章算法设计

☀️☀️☀️☀️

题目1.16:

  写一个算法自大至小的顺序一次输出顺序读取的三个数据x,y,z

solution1(c++):第一次对所有排列组合数枚举,总共也就6种情况
#include
#include

using namespace std;

//输入三个整数,从大到小的顺序输出三个数据 
int main(){
	int x,y,z;
	cin>>x>>y>>z;
	if(x>=y&&y>=z){
		cout<=z&&z>=y){
		cout<=x&&x>=z){
		cout<=z&&z>=x){
		cout<=x&&x>=y){
		cout<=y&&y>=x){
		cout<

输出检验(c++):

数据结构---课后习题(第一章)_第1张图片

soultion1(c):
int main(){
	int x,y,z;
	scanf("%d %d %d",&x,&y,&z); 
	if(x>=y&&y>=z){
		printf("%d,%d,%d",x,y,z);
	}	
	else if(x>=z&&z>=y){
		printf("%d,%d,%d",x,z,y);
	} 
	else if(y>=x&&x>=z){
		printf("%d,%d,%d",y,x,z);
	} 
	else if(y>=z&&z>=x){
		printf("%d,%d,%d",y,z,x);
	}
	 else if(z>=x&&x>=y){
		printf("%d,%d,%d",z,x,y);
	}
	 else if(z>=y&&y>=x){
		printf("%d,%d,%d",z,y,x);
	}
}

输出检验(c):

solution2(c++):利用if-else条件语句
#include
#include

using namespace std;

int main(){
	int x,y,z;
	cin>>x>>y>>z;
	int t1,t2;
	if (x>=y){
		t1 = x;
		t2 = y;
	}
	else{
		t1 = y;
		t2 = x; 
	} 
	if(z>=t1){
		cout<=t2){
	    cout<

输出检验(c++):

数据结构---课后习题(第一章)_第2张图片

solution2(c):
int main(){
	int x,y,z;
	scanf("%d %d %d",&x,&y,&z); 
	int t1,t2;
	if (x>=y){
		t1 = x;
		t2 = y;
	}
	else{
		t1 = y;
		t2 = x; 
	} 
	if(z>=t1){
		printf("%d %d %d",z,t1,t2);
	}
	else{
		if(z>=t2){
	    		printf("%d %d %d",t1,z,t2);
		}
		else{
				printf("%d %d %d",t1,t2,z);
		}
	}
	
}

输出检验(c):

彩蛋:

  因为很长时间没有写过博客(bushi),算法实现能力远不及从前,代码写的很烂,主要目的还是便于自己日后复习使用。

你可能感兴趣的:(数据结构,c++,算法)