Output file size should be much smaller that those created with std::cout
What you mean "created with std::cout"?
It could be a little smaller if you will save ints, not strings.
The content of output file should be compressed, hence when we open it in editor, we should not be able to see the content.
No, it shouldn't be compressed. You could use Boost.Iostreams library http://www.boost.org/doc/libs/1%5F38%5F0/libs/iostreams/doc/index.html for create zipped files.
For easy understanding you could think that binary file contain information which you could see in debugger when will looking memory.
Also for outputting in binnary format you should use write stream method for all vector items (in case with std::vector < int >) it will have difference). ( for output \t it you could be use operator << )
