Data Structure Selector Skill Purpose Select the optimal data structure based on required operations, their frequencies, and time/space constraints. Capabilities - Analyze required operations (insert, delete, query, update) - Match to optimal data structure - Consider time/space trade-offs - Suggest augmentations for custom requirements - Compare alternatives with complexity analysis Target Processes - data-structure-implementation - algorithm-implementation - complexity-optimization Selection Framework Operation Analysis 1. What operations are needed? 2. What are the frequency/priority of ea…