当前位置:   article > 正文

【915程序设计】19西交大软件专硕915程序设计真题讲解_西安交通大学2019年915真题

西安交通大学2019年915真题

1. 长方形区域

#include<bits/stdc++.h>
using namespace std;

int main(){
	int x,y;
	int xmin,xmax,ymin,ymax;
	cin>>x>>y;
	xmin=xmax=x;
	ymin=ymax=y;
	while(!(x==0&&y==0)){
		if(x>xmax){
			xmax=x;
		}
		if(x<xmin){
			xmin=x;
		}
		if(y>ymax){
			ymax=y;
		}
		if(y<ymin){
			ymin=y;
		}
		cin>>x>>y;
	}
	cout<<"("<<xmin<<","<<ymin<<")"<<endl;
	cout<<"("<<xmax<<","<<ymax<<")";
	return 0;
} 
  • 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

在这里插入图片描述

2.回文串

#include<bits/stdc++.h>
using namespace std;

bool f1(string str,int i,int j){
	if(i==j){
		return true;
	}
	if(str[i]==str[j]){
		if(i+1<=j-1){
			return f1(str,i+1,j-1);
		}
		return true;
	}
	return false;
}

bool f2(string str){
	stack<int> s;
	int length=str.length();
	for(int i=0;i<length;++i){
		s.push(str[i]);
	}
	for(int i=0;i<length;++i){
		if(str[i]!=s.top()){
			return false;
		}
		s.pop();
	}
	return true;
}

int main(){
	string str;
	cin>>str;
	//if(f1(str,0,str.length()-1)){
	if(f2(str)){
		cout<<"yes";
	}else{
		cout<<"no";
	}
	return 0;
} 
  • 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

在这里插入图片描述

3. 逆序对(时间复杂度有待提高)

#include<bits/stdc++.h>
using namespace std;

// 时间复杂度为O(n^2) 
int main(){
	int n;
	cin>>n;
	int nums[n];
	for(int i=0;i<n;++i){
		cin>>nums[i];
	}
	for(int i=0;i<n;++i){
		for(int j=i+1;j<n;++j){
			if(nums[i]>nums[j]){
				cout<<nums[i]<<" "<<nums[j]<<endl;
			}
		}
	}
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

在这里插入图片描述

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号