23.11.2014 Views

Data Structures and Algorithms in Java[1].pdf - Fulvio Frisone

Data Structures and Algorithms in Java[1].pdf - Fulvio Frisone

Data Structures and Algorithms in Java[1].pdf - Fulvio Frisone

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Dictionary<br />

<strong>in</strong>sert(5,A)<br />

(5,A)<br />

{(5A)}<br />

<strong>in</strong>sert(7,B)<br />

(7,B)<br />

{(5,A), (7,B)}<br />

<strong>in</strong>sert(2,C)<br />

(2,C)<br />

{(5,A), (7,B), (2,C)}<br />

<strong>in</strong>sert(8,D)<br />

(8,D)<br />

{(5,A), (7,B), (2,C),(8,D)}<br />

<strong>in</strong>sert(2,E)<br />

(2,E)<br />

{(5,A), (7,B), (2,C), (8,D), (2,E)}<br />

f<strong>in</strong>d(7)<br />

(7,B)<br />

{(5,A), (7,B), (2,C), (8,D), (2,E)}<br />

f<strong>in</strong>d(4)<br />

null<br />

{(5,A), (7,B), (2,C), (8,D), (2,E)}<br />

f<strong>in</strong>d(2)<br />

(2,C)<br />

{(5,A), (7,B), (2,C), (8,D), (2,E)}<br />

546

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!