https://github.com/rapter1990/selection-sort-example
Selection Sort Example
https://github.com/rapter1990/selection-sort-example
java selection-sort
Last synced: 26 days ago
JSON representation
Selection Sort Example
- Host: GitHub
- URL: https://github.com/rapter1990/selection-sort-example
- Owner: Rapter1990
- Created: 2020-06-11T04:38:14.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-11T17:57:05.000Z (about 6 years ago)
- Last Synced: 2026-01-01T10:40:19.018Z (5 months ago)
- Topics: java, selection-sort
- Language: Java
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Selection Sort Example
- Selection sort algorithm an array by repeatedly finding the minimum element from unsorted part and putting it at the beginning
- This java example shows how to sort an element of Java ArrayList using selection 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
- selectionsort
- SelectionSortProcess.java
- main
- Main.java
- model
- Person.java
- util
- DefineValues.java
- ShowProcess.java
- selectionsort
Explaining an inforamtion of each file
Files Names
Information
SelectionSortProcess.java
Implementing Selection 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