Open
Description
Description of the problem
Feature Request: As there are multiple data structures available to solve a particular problem, this feature allows one to choose the most optimized data structure for a particular problem.
Example of the problem
Array vs Stack
- Access: O(1) vs O(N)
- Insertion: O(N) vs O(1)
References/Other comments
The example given here is very generic and basic, there can be multiple metrics to compare data structures.