https://github.com/rapter1990/bubble-sort
Bubble Sort
https://github.com/rapter1990/bubble-sort
bubble-sort java
Last synced: about 2 months ago
JSON representation
Bubble Sort
- Host: GitHub
- URL: https://github.com/rapter1990/bubble-sort
- Owner: Rapter1990
- Created: 2020-07-21T06:14:48.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-09T05:32:59.000Z (almost 6 years ago)
- Last Synced: 2025-12-30T16:03:08.684Z (5 months ago)
- Topics: bubble-sort, java
- Language: Java
- Homepage:
- Size: 15.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Bubble Sort Example
- Bubble Sort is a simple algorithm which is used to sort a given set of n elements provided in form of an array with n number of elements.It compares all the element one by one and sort them based on their values
- This java example shows how to sort an element of Java ArrayList using bubble 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
- bubblesort
- BubbleSortProcess.java
- main
- Main.java
- model
- Person.java
- util
- DefineValues.java
- ShowProcess.java
- bubblesort
Explaining an inforamtion of each file
Files Names
Information
BubbleSortProcess.java
Implementing BubbleSort 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