https://github.com/ivandrf/vector-int
Realization of a self-expanding array with some std::vector methods
https://github.com/ivandrf/vector-int
cpp cppvector vector
Last synced: 4 months ago
JSON representation
Realization of a self-expanding array with some std::vector methods
- Host: GitHub
- URL: https://github.com/ivandrf/vector-int
- Owner: IvanDrf
- Created: 2025-01-11T15:35:11.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-05T21:12:03.000Z (over 1 year ago)
- Last Synced: 2025-07-06T04:39:33.429Z (12 months ago)
- Topics: cpp, cppvector, vector
- Language: C++
- Homepage:
- Size: 27.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vector-Int 
Realization of a self-expanding array with some **std::vector** methods

# Methods
>• **Clear** - clears the array and makes it empty
>
>• **DeleteAll** - deletes all some numbers
>
>• **DeleteElement** - removes an element from the array with given element number
>
>• **DeleteLeft** - deletes the first occurrence of the element on the left
>
>• **DeleteRight** - deletes the first occurrence of the element on the right
>
>• **Empty** - checks whether the array is empty
>
>• **FindLeft** - finds the first occurrence of an element in the array on the left
>
>• **FindRight** - finds the first occurrence of an element in the array on the right
>
>• **Insert** - inserts a number into some position in the array, or inserts all or part of another array in the array into that place
>
>• **PushBack** - adds an element to the end of the array
>
>• **Size** - returns array size
>
>• **Sort** - sorts the array
>
>• **Sorted** - returns sorted array