I don't get it, you want to put some very big numbers in a vector and then use them correct? You realise you have to figure out how to handle this numbers as the default implementation won't do (since as you say
I can't store very big numbers in normal variables
). Anyway let's say you find a way.
You need to be sure that each element of a vector is stored successively. I am not sure it does. And I think that it has to do with the architecture of your machine (how does it store each number). So probably it's not portable either (even if it works in your machine it's not guaranteed to work in others also).
And don't think that arrays are better! They do store successively but they also are machine dependent.
Now how can I show what's in the vectors that are in my Set?
How can I change the values an stuff like this?
And by the the way thanks for replying! :D