if you are asking if the memory space is in order then yes , it will be in contiguous memory and the elements will be accessible if you know the size of an element . example if the vector is of int type and you want the element then multiply the index with the 4 bytes (int) and added it to the base address and you will find the element.