Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit e15233c

Browse files
added array dictionary implementations
1 parent 3f8ec79 commit e15233c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

‎_posts/2013-02-27-3.3-dictionaries.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ title: 3.3 Dictionaries
1313
* delete - given an element remove it form the dictionary
1414
* max, min - certain implementations support efficient retrieval of the largest/smallest key from the dictionary
1515
* predecessor, successor - certain implementations support efficient retrieval of the item immediately before/after a given key (in sorted order) from the dictionary
16-
* different implementations provide better/worse running time guarantees
16+
* different implementations provide better/worse running time guarantees for different operations
1717

1818
## Unsorted array dictionary implementation
1919

@@ -31,3 +31,5 @@ title: 3.3 Dictionaries
3131
* min/max - O(1) - first and last element
3232
* predecessor/successor - O(1) - elements in previous/next positions
3333

34+
35+

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /