I have an input which is about 450 today, and it might increase in the future. (Sometimes it is run with less than 450, maybe 100 or 20)
Is it better for me to:
- not set capacity
- set capacity low (100)
- set capacity sligthly less than 450
- set capacity sligthly above 450
- set capacity moderatly above 450
- set capacity to something way above expected (80% more?, twice?)
using n as number of increases (not actual complexity) I'm, thiniking that setting it to less than expected n=440 or something will give me "complexity" n + 2n = (3n)
whereas if i put it slightly above (n=460) will give just n
also if i set n = 800 gives me a high n (almost 2n) ( high but then i use TrimToSize to make it better?
What is the best choice?