- Not implemented: ⛔
- Implementing:
⚠️ - Implemented: ✅
| 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) |