I was wondering whether it's possible to resize a dynamically allocated array without copying the data. More specifically, when I allocate an array on the heap with a size of 10, and I write some values in the first 5 places, those values should lay right next to each other in memory right? So if I wanted to resize the array so that it only contains those 5 first values, is there a way to "shrink' the size of the array without needing to copy everything to another array with the right size?
Like can I just shrink the array to the lower size and free the rest of the memory?