erius
33fee958a5
Added 2 new constructors for FileTape which copy the size of existing tape into a new one Implemented external sort of a Tape using heap sort Rewritten FileTape constructors implementation to better take advantage of existing constructor calls Added const to some parameters to indicate their immutability Added unit tests for external_sort
6 lines
119 B
C++
6 lines
119 B
C++
#include <iostream>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
std::cout << "Hello, World!" << std::endl;
|
|
return 0;
|
|
}
|