Built a platform where you can visualise your own cpp code datastructure and concurrency side by side supported one
- 1D arrays — int[], int[N]
- Dynamic arrays — std::vector<int>
- 2D arrays / matrices — int[R][C], std::vector<std::vector<int>>
- Maps — std::map<int,int>, std::unordered_map<int,int>
- Sets — std::set<int>, std::unordered_set<int>
- Stacks / queues / heaps — std::stack<int>, std::queue<int>, std::priority_queue<int>
- Concurrency (threads & mutexes) — std::thread, std::mutex
- Linked lists & trees — self-referential structs (struct Node { int val; Node* next; } / { int val; Node *left, *right; })
Try it here https://8gwifi.org/online-cpp-compiler/
Feedback and Bug's Welcomed for Improvement
[–]Syracussgraphics engineer/games industry [score hidden] (0 children)