Reputation: 1185
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
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
Reputation: 19783
Implement couple or more of classic algorithms on sorting arrays, reversing of lists, queue management, etc.
Upvotes: 1