Fix a typo in linked list's "ru" readme (#723)

Deletion time complexity from O(1) to O(n)
This commit is contained in:
tusba
2022-01-27 14:51:29 +06:00
committed by GitHub
parent c2e5b3d5f1
commit d581548b4c

View File

@ -133,7 +133,7 @@ end ReverseTraversal
| Чтение | Поиск | Вставка | Удаление |
| :--------: | :-------: | :--------: | :-------: |
| O(n) | O(n) | O(1) | O(1) |
| O(n) | O(n) | O(1) | O(n) |
### Пространственная сложность