文件读取和排序

题目:1. 文件"rand_3w.txt"中有三万个随机的、各不相等的正整数,写一个函数,求第k小的数。(如1、2、3、4、5,中第3小的数为3)

冒泡:

#include <stdio.h>
#include <stdlib.h>

int main(void)
{
	FILE *fp;
    unsigned int n[30000];
	int i=0,j=0;
	int a,flen,temp,k;
	fp = fopen("rand_3w.txt","r");
	if (fp == NULL)
	{
		printf("cannot open the file!\n");
		return -1;
	}
	fseek(fp,0L,SEEK_END); 
	flen=ftell(fp); 
	fseek(fp,0L,SEEK_SET); 
	while (ftell(fp)<=flen)
	{
		fscanf(fp,"%d",&n[i++]);
		a = ftell(fp);
		fseek(fp,a+1,SEEK_SET);
	}
	printf("input the number:\n");
	scanf("%d",&k);
 	while (j < k)
	{
 		for (i=0;i<30000-j-1;i++)
 		{
 			if (n[i]<n[i+1])
 			{
 				temp = n[i];
 				n[i] = n[i+1];
 				n[i+1] = temp;
 			}	
 		}
		j++;
 	}
	printf("%d\n",n[30000-k]);
	return 0;

}
快排:
#include <stdio.h>
#include <stdlib.h>

int Partition(int n[],int i,int j)
{
	int data=n[i];
	while(i<j)
	{
		while (i<j && n[j]>=data)
			j--;
		if (i<j)
			n[i++] = n[j];
		while(i<j && n[i]<=data)
			i++;
		if (i<j)
			n[j--] = n[i];
	}
	n[i] = data;
	return i;
}

void QuickSort(int n[],int low,int high)
{
	int pos;
	if (low<high)
	{
		pos = Partition(n,low,high);
		QuickSort(n,low,pos-1);
		QuickSort(n,pos+1,high);
	}
}

int main(void)
{
	FILE *fp;
    int n[30000];
	int i=0;
	int a,flen,k;
	fp = fopen("rand_3w.txt","r");
	if (fp == NULL)
	{
		printf("cannot open the file!\n");
		return -1;
	}
	fseek(fp,0L,SEEK_END); 
	flen=ftell(fp); 
	fseek(fp,0L,SEEK_SET); 
	while (ftell(fp)<=flen)
	{
		fscanf(fp,"%d",&n[i++]);
		a = ftell(fp);
		fseek(fp,a+1,SEEK_SET);
	}
	printf("input the number:\n");
	scanf("%d",&k);
	QuickSort(n,0,30000-1);
	printf("the result is %d\n",n[k-1]);
	fclose(fp);
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值