- insertion sort
- selection sort
- bubble sort
- heap sort
- Quick Sort - in place
- Merge Sort
- Binary Search
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from swiftshadow.classes import Proxy | |
from pytubefix import YouTube | |
import os.path as osp | |
import pytubefix | |
import os | |
swift = Proxy(autoRotate=True) | |
print(swift.proxy()) | |
Function | Creation | Insertion | Updation | Deletion | Search | Notes |
---|---|---|---|---|---|---|
vector | O(n) | O(1) | O(1) | O(n) | O(n) | Insertion and deletion inbetween is heavy, push_back and pop_back is amortized to O(1) |
deque | O(1) | O(1) | O(1) | O(1) | O(n) | Insertion nad deletion is possible at both ends of the list |
stack | O(1) | O(1) | NA | O(1) | O(n) | Insertion and deletion is possible only at the top |
queue | O(1) | O(1) | NA | O(1) | O(n) | Insertion at back and deletion at front |
unordered_map | O(1) | O(1) | O(1) | O(1) | O(1) | Can't store duplicates |
unordered_set | O(1) | O(1) | O(1) | O(1) | O(1) | Can't store duplicates |
priority_queue | O(1) | O(logn) | NA | O(logn) | O(nlogn) | Random access is not possible |
map | O(1) | O(logn) | O(logn) | O(logn) | O(logn) | No duplicates and slower than unordered_map |
STL function | Time Complexity | Space complexity |
---|---|---|
sort() | O(nlogn) | O(1) |
lower_bound() | O( logn) | O(1) |
upper_bound() | O(logn) | O(1) |
next_permutation() | O(n) | O(1) |
prev_permutation() | O(n) | O(1) |
partial_sort( , k ) | O(n +klogk) | O(1) |
nth_element() | O(n) | O(1) |
Operation | Code |
---|---|
To remove last set bit | x & ( x - 1 ) |
To double | x <<= 1 |
To halve | x >>= 1 |
To lowercase | x | ‘ ‘ |
To togglecase | x ^ ‘ ‘ |
Is power of two? | x && !(x & (x-1) ) |
log base 2 ( brian kern algorithm) | int res = 0; while (x >>= 1) res++; return res; |
multiply by 7 | ( (x<<3) - x ) |