QVSJ
QVSJ

Reputation: 1185

Sample project to know more on Java collections

Can someone suggest a sample project[Any task/project/coding activity] where I can use Java collections extensively with core java? Intention is just to familiarize my self more with collections framework. I have basic to intermediate knowledge on the same. Asking here since I dont have the patience to do all exrecises from the Java tutorial.

Upvotes: 1

Views: 4394

Answers (2)

sudmong
sudmong

Reputation: 2036

very simple would be, write code to manage in memory student database. Provide option to - add/delete/modify students. - compare students, - sort student list sorted by name, by id.

Upvotes: 4

topchef
topchef

Reputation: 19783

Implement couple or more of classic algorithms on sorting arrays, reversing of lists, queue management, etc.

Upvotes: 1

Related Questions