码迷,mamicode.com
首页 > 编程语言 > 详细

算法训练——区间K大数查询

时间:2020-02-02 18:10:25      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:区间   ret   scan   while   ++   大数   scanf   查询   算法   

 

//区间K大数查询
#include<stdio.h> 
int main(){
	int n,m,l,r,k,index = 0;
	scanf("%d",&n);
	int a[n];
	for(int i=1;i<=n;i++)
		scanf("%d",&a[i]);
	scanf("%d",&m);
	while(m--){
		int b[n];
		scanf("%d%d%d",&l,&r,&k);
		for(int i=l;i<=r;i++)
			b[i] = a[i];
		for(int i=1;i<=r-l;i++){
			for(int j=l;j<=r-i;j++){
				if(b[j] < b[j+1]){
					int t;
					t = b[j];b[j] = b[j+1];b[j+1] = t;
				}
			}
		} 
		printf("%d",b[l+k-1]);
	}
	return 0;
} 

  

算法训练——区间K大数查询

标签:区间   ret   scan   while   ++   大数   scanf   查询   算法   

原文地址:https://www.cnblogs.com/Hqx-curiosity/p/12252821.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!