test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
10,000 add randomly | 30.52 | 32.76 | 3.28e-4 |
10,000 add & delete randomly | 66.96 | 14.94 | 0.00 |
10,000 addMany | 39.78 | 25.14 | 3.67e-4 |
10,000 get | 27.38 | 36.52 | 0.00 |
Data Structure | Unit Test | Performance Test | API Documentation | Implemented |
---|---|---|---|---|
Binary Tree | Binary Tree | |||
Binary Search Tree (BST) | BST | |||
AVL Tree | AVLTree | |||
Red Black Tree | AVLTree | |||
Tree Multiset | TreeMultimap | |||
Segment Tree | SegmentTree | |||
Binary Indexed Tree | BinaryIndexedTree | |||
Graph | AbstractGraph | |||
Directed Graph | DirectedGraph | |||
Undirected Graph | UndirectedGraph | |||
Linked List | SinglyLinkedList | |||
Singly Linked List | SinglyLinkedList | |||
Doubly Linked List | DoublyLinkedList | |||
Queue | Queue | |||
Object Deque | ObjectDeque | |||
Array Deque | ArrayDeque | |||
Stack | Stack | |||
Coordinate Set | CoordinateSet | |||
Coordinate Map | CoordinateMap | |||
Heap | Heap | |||
Priority Queue | PriorityQueue | |||
Max Priority Queue | MaxPriorityQueue | |||
Min Priority Queue | MinPriorityQueue | |||
Trie | Trie |
Data Structure Typed | C++ STL | java.util | Python collections |
---|---|---|---|
Array<E> | vector<T> | ArrayList<E> | list |
DoublyLinkedList<E> | list<T> | LinkedList<E> | deque |
SinglyLinkedList<E> | - | - | - |
Set<E> | set<T> | HashSet<E> | set |
Map<K, V> | map<K, V> | HashMap<K, V> | dict |
Map<K, V> | - | - | OrderedDict |
Queue<E> | queue<T> | Queue<E> | - |
PriorityQueue<E> | priority_queue<T> | PriorityQueue<E> | - |
Heap<V> | priority_queue<T> | PriorityQueue<E> | heapq |
Stack<E> | stack<T> | Stack<E> | - |
Deque<E> | deque<T> | - | - |
Trie | - | - | - |
HashMap<K, V> | unordered_map<K, V> | HashMap<K, V> | defaultdict |
- | multiset<T> | - | - |
- | multimap<K, V> | - | - |
BinaryTree<K, V> | - | - | - |
BST<K, V> | - | - | - |
DirectedGraph<V, E> | - | - | - |
UndirectedGraph<V, E> | - | - | - |
- | unordered_multiset | - | Counter |
- | - | LinkedHashSet<E> | - |
- | - | LinkedHashMap<K, V> | - |
AVLTree<E> | - | TreeSet<E> | - |
AVLTree<K, V> | - | TreeMap<K, V> | - |
AVLTree<E> | set | TreeSet<E> | - |
- | unordered_multimap<K, V> | - | - |
- | bitset<N> | - | - |
- | unordered_set<T> | HashSet<E> | - |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
10,000 add randomly | 30.52 | 32.76 | 3.28e-4 |
10,000 add & delete randomly | 66.96 | 14.94 | 0.00 |
10,000 addMany | 39.78 | 25.14 | 3.67e-4 |
10,000 get | 27.38 | 36.52 | 0.00 |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
1,000 add randomly | 10.50 | 95.20 | 2.30e-4 |
1,000 add & delete randomly | 16.18 | 61.81 | 2.48e-4 |
1,000 addMany | 10.80 | 92.62 | 1.83e-4 |
1,000 get | 18.03 | 55.45 | 1.41e-4 |
1,000 dfs | 157.86 | 6.33 | 0.00 |
1,000 bfs | 56.68 | 17.64 | 0.00 |
1,000 morris | 37.21 | 26.88 | 2.79e-4 |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
10,000 add randomly | 27.61 | 36.21 | 4.73e-4 |
10,000 add & delete randomly | 62.93 | 15.89 | 5.86e-4 |
10,000 addMany | 28.70 | 34.84 | 0.00 |
10,000 get | 27.67 | 36.14 | 2.92e-4 |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
100,000 add randomly | 87.51 | 11.43 | 0.01 |
100,000 add & delete randomly | 189.06 | 5.29 | 0.01 |
100,000 getNode | 35.33 | 28.31 | 8.93e-4 |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
1,000 addVertex | 0.10 | 9899.91 | 8.58e-7 |
1,000 addEdge | 6.06 | 165.02 | 1.68e-4 |
1,000 getVertex | 0.05 | 2.17e+4 | 4.22e-7 |
1,000 getEdge | 23.05 | 43.38 | 0.00 |
tarjan | 222.59 | 4.49 | 0.01 |
tarjan all | 226.89 | 4.41 | 0.01 |
topologicalSort | 187.34 | 5.34 | 0.01 |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
10,000 add & pop | 4.66 | 214.54 | 9.38e-5 |
10,000 fib add & pop | 364.30 | 2.74 | 0.01 |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
1,000,000 unshift | 243.61 | 4.10 | 0.07 |
1,000,000 unshift & shift | 173.32 | 5.77 | 0.03 |
1,000,000 insertBefore | 315.86 | 3.17 | 0.04 |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
10,000 push & pop | 228.06 | 4.38 | 0.03 |
10,000 insertBefore | 252.07 | 3.97 | 0.01 |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
10,000 refill & poll | 11.53 | 86.71 | 2.27e-4 |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
1,000,000 push | 227.24 | 4.40 | 0.07 |
1,000,000 shift | 25.60 | 39.07 | 0.00 |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
1,000,000 push | 45.98 | 21.75 | 0.01 |
1,000,000 push & shift | 81.12 | 12.33 | 0.00 |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
100,000 push | 59.40 | 16.83 | 0.01 |
100,000 getWords | 90.07 | 11.10 | 0.00 |