Dynamic Array--Data Structure

Three types of Array: Static:int my_array[100]; Semi-Dynamic: int *my_array = new int[size]; (only if we know the max size) If the max size is unknown, we use Dynamic Array. Dynamic Array operations:
相關文章
相關標籤/搜索