├── c │ ├── arrays │ │ ├── custome_array │ │ ├── custome_array.c │ │ └── dynamic_array.md │ ├── basics │ │ ├── a.out │ │ ├── main │ │ └── main.c │ ├── queue │ │ ├── circular_queue.c │ │ ├── circular_queue.h │ │ ├── main.c │ │ └── queue │ └── stacks │ └── stacks.c ├── javascript │ ├── arrays │ │ ├── custom-array.js │ │ ├── json-matrix.js │ │ ├── linked-list.html │ │ ├── linked-list.js │ │ └── Untitled-1.js │ ├── hash-tables │ │ ├── hash-table.js │ │ └── hash-tables.js │ ├── heap │ │ ├── heap.js │ │ ├── heap-prirotery-queue.js │ │ ├── max-heap.js │ │ └── min-heap.js │ ├── queues │ │ ├── prirority-queue.js │ │ ├── queue.js │ │ ├── queue-stack.js │ │ └── reverse-queue.js │ ├── stacks │ │ ├── expression.js │ │ ├── index.js │ │ ├── reverse-polish-notation.js │ │ ├── reverse-string.js │ │ └── stacks.js │ ├── tree │ │ ├── avl │ │ │ └── avltree.js │ │ └── binary │ │ └── binary.js │ └── tries │ └── tries.js ├── python │ ├── arrays │ │ ├── arrays.py │ │ ├── linked-list.py │ │ └── main.py │ ├── basic │ │ └── tdl.py │ ├── code_wars │ │ └── exersice.py │ ├── hash-tables │ │ └── hash-table.py │ ├── numpy │ │ ├── mini-project.py │ │ └── test_numpy.py │ ├── open-cv │ │ ├── pose_landmarker_heavy.task │ │ ├── pose_landmarker_lite.task │ │ ├── test_image.png │ │ ├── test_mediapipe2.py │ │ ├── test_mediapipe3.py │ │ ├── test_mediapipe.py │ │ ├── test_open_cv.py │ │ ├── test_opencv.py │ │ └── video │ │ ├── large.mp4 │ │ ├── person-1.mp4 │ │ ├── shoplift-11.mp4 │ │ ├── shoplift-12.mp4 │ │ └── shoplift-9.mp4 │ ├── queues │ │ ├── pycache │ │ │ └── queue.cpython-312.pyc │ │ ├── queue.py │ │ └── stack-queue.py │ └── stacks │ ├── call-stack-simulation.py │ ├── expression.py │ ├── pycache │ │ └── stack.cpython-312.pyc │ ├── reverse-polish-notation.py │ ├── reverse-string.py │ ├── stack.py │ └── undo-redo.py └── rust ├── Cargo.lock ├── Cargo.toml ├── src │ ├── arrays │ │ ├── arrays.rs │ │ └── mod.rs │ ├── code_wars │ │ ├── exersice │ │ ├── exersice.rs │ │ └── mod.rs │ ├── hash-maps │ │ ├── hash-map │ │ └── hash-map.rs │ ├── lib.rs │ ├── main.rs │ └── tree │ ├── binary.rs │ └── mod.rs └── target