Cod sursa(job #1005244)
| Utilizator | Data | 4 octombrie 2013 16:34:49 | |
|---|---|---|---|
| Problema | Sortare prin comparare | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva educationala | Marime | 0.27 kb |
#include<iostream>
#include<stdlib.h>
using namespace std;
ifstream fin("algsort.in");
ofstream fout("algsort.out");
void fcmp(void const* ,void const* );
int main()
{
int n,v[500001];
fin>>n;
}
void fcmp(void const* a, void const* b)
{
return a-b;
}