21.11.2014 Views

PJWSTK - MAS - Wykład 05

PJWSTK - MAS - Wykład 05

PJWSTK - MAS - Wykład 05

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Kolekcje<br />

o<br />

List: kolejność<br />

<br />

ArrayList: szybki dostęp do elementów o określonym indeksie, wolne<br />

wstawianie w środku<br />

Collection c = new ArrayList();<br />

for(int i = 0; i < 10; i++)<br />

c.add(Integer.toString(i));<br />

Iterator it = c.iterator();<br />

while(it.hasNext())<br />

System.out.println(it.next());<br />

<br />

LinkedList: bardzo szybkie wstawianie i usuwanie oraz optymalna<br />

szybkość dostępu<br />

Modelowanie i Analiza Systemów Informacyjnych (<strong>MAS</strong>), wykład 3 5

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

Saved successfully!

Ooh no, something went wrong!