https://github.com/rapter1990/mergesortexample
MergeSortExample
https://github.com/rapter1990/mergesortexample
java mergesort
Last synced: 3 months ago
JSON representation
MergeSortExample
- Host: GitHub
- URL: https://github.com/rapter1990/mergesortexample
- Owner: Rapter1990
- Created: 2020-09-09T05:24:28.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-09T05:32:16.000Z (about 5 years ago)
- Last Synced: 2025-01-20T22:53:05.318Z (9 months ago)
- Topics: java, mergesort
- Language: Java
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Merge Sort Example
- Merge sort is a divide-and-conquer algorithm, which recursively calls itself on halved portions of the initial collection. It also divides input array in two halves, calls itself for the two halves and then merges the two sorted halves.
- This java example shows how to sort an element of Java ArrayList using Merge 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
- mergesort
- MergeSortProcess.java
- main
- Main.java
- model
- Person.java
- util
- DefineValues.java
- ShowProcess.java
- mergesort
Explaining an inforamtion of each file
Files Names
Information
MergeSortProcess.java
Implementing MergeSort 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