https://github.com/rapter1990/bubble-sort-example
Bubble Sort Example
https://github.com/rapter1990/bubble-sort-example
bubble-sort java
Last synced: about 1 year ago
JSON representation
Bubble Sort Example
- Host: GitHub
- URL: https://github.com/rapter1990/bubble-sort-example
- Owner: Rapter1990
- Created: 2020-05-28T11:36:44.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-28T12:02:30.000Z (about 6 years ago)
- Last Synced: 2025-01-20T22:53:07.208Z (over 1 year ago)
- Topics: bubble-sort, java
- Language: Java
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- 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 id and title of movies to its object and perfoms sort process in terms of its title.
Files contaning in this repository
- src
- bubblesort
- BubbleSortProcess.java
- main
- Main.java
- model
- Movie.java
- output
- ShowProcess.java
- process
- ListProcess.java
- bubblesort
Explaining an inforamtion of each file
Files Names
Information
BubbleSortProcess.java
Implementing Bubble Sort Process
Movie.java
Defining it as a POJO
Main.java
Handle with all project files to run the program
ShowProcess.java
Showing all information about Movie Object as output
ListProcess.java
Filling unique values of id and title values in Movie