https://github.com/rapter1990/collection-sort-example
Collection Sort Example
https://github.com/rapter1990/collection-sort-example
collection-sort java
Last synced: 26 days ago
JSON representation
Collection Sort Example
- Host: GitHub
- URL: https://github.com/rapter1990/collection-sort-example
- Owner: Rapter1990
- Created: 2020-11-23T07:43:41.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-23T07:46:30.000Z (over 5 years ago)
- Last Synced: 2025-07-26T16:23:24.678Z (11 months ago)
- Topics: collection-sort, java
- Language: Java
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Collection Sort Example
- Collection Sort method is present in java.util.Collections class. It is used to sort the elements present in the specified list of Collection in ascending order.
It works similar to java.util.Arrays.sort() method but it is better then as it can sort the elements of Array as well as linked list, queue and many more present in it - This java example shows how to sort an element of Java ArrayList using Comb Sort method of Collections class.
The objective of Program
- The program firstly assign some values including person's atttributes to its object and performs sort process in terms of each attribute title. All sort process is implemented by Turkish alphabetical order.
Files contaning in this repository
- src
- collectionsort
- CollectionSortProcess.java
- main
- Main.java
- model
- Person.java
- util
- DefineValues.java
- ShowProcess.java
- collectionsort
Explaining an inforamtion of each file
Files Names
Information
CollectionSortProcess.java
Implementing CollectionSort Sort Process by Turkish alphabetical order
Person.java
Defining it as a POJO
Main.java
Handle with all project files to run the program
ShowProcess.java
Showing all information about Person Object as output
DefineValues.java
Filling its attributes into Person Object