Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 1.15 KB

File metadata and controls

23 lines (17 loc) · 1.15 KB

Data Structures

Contents

Implementation Status

  • Not implemented: ⛔
  • Implementing: ⚠️
  • Implemented: ✅

Lists

Status Operation Method 🕛 Time Complexity - (Worst)
Linear Search search O(N)
Add to the begin add_start O(1)
Add to the nth position add_at O(N)
Add to the end add_end O(1)
⚠️ Remove removeFirstOccurrence O(N)
Get get O(N)
Update set O(N)