程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> codechef Turbo Sort 題解

codechef Turbo Sort 題解

編輯:C++入門知識

Input

t – the number of numbers in list, then t lines follow [t <= 10^6].

Each line contains one integer: N [0 <= N <= 10^6]

Output

Output given numbers in non decreasing order.

Example

Input:

5
5
3
6
7
1

Output:

1
3
5
6
7

大數據的排序,輸入和輸出。 一開始使用了cout,那麼就超時了,後來換用printf,結果過了,速度快上五倍以上。 putchar應該更加快,然後更快的就是使用buffer了,使用函數fwrite. 本oj網站首先學到的就是數據輸入輸出問題了。
#include
#include 
#include 
using namespace std;

int TurboSort()
{
	int T = 0, num = -1, c = 0, j = 0;
	scanf("%d\n", &T);
	char buffer[1000000];
	int *A = new int[T];
	while ((c = fread(buffer, 1, 1000000, stdin)) > 0)
	{
		for (int i = 0; i < c; i++)
		{
			if (buffer[i] == '\n')
			{
				A[j++] = num;
				num = -1;
			}
			else
			{
				if (-1 == num) num = buffer[i] - '0';
				else num = num * 10 + buffer[i] - '0';
			}
		}
	}
	if (-1 != num) A[T-1] = num;
	sort(A, A+T);

	for (int i = 0; i < T; i++)
	{
		printf("%d\n", A[i]);//使用cout會超時,最少慢5倍
	}
	delete [] A;
	return 0;
}



  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved