Skip to content

Instantly share code, notes, and snippets.

@thinkphp
Created December 3, 2015 09:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thinkphp/c2aed8917c684170881b to your computer and use it in GitHub Desktop.
Save thinkphp/c2aed8917c684170881b to your computer and use it in GitHub Desktop.
int main() {
int n;
ifstream fin( FIN );
ofstream fout( FOUT );
fin>>n;
Container container( n );
fin>>container;
container.sorted();
fout<<container;
return(0);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment