TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Java Bubble Sort Program
Alagunila Meganathan
Jul 31
2016
Code
494
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
expand
public
class
bubbleSort{
public
static
void
main(String a[]){
int
i;
int
array[] = {
12
,
9
,
4
,
99
,
120
,
1
,
3
,
10
};
System.out.println(
"Values Before the sort:\n"
);
for
(i =
0
; i < array.length; i++)
System.out.print( array[i]+
" "
);
System.out.println();
bubble_srt(array, array.length);
System.out.print(
"Values after the sort:\n"
);
for
(i =
0
; i <array.length; i++)
System.out.print(array[i]+
" "
);
System.out.println();
System.out.println(
"PAUSE"
);
}
public
static
void
bubble_srt(
int
a[],
int
n ){
int
i, j,t=
0
;
for
(i =
0
; i < n; i++){
for
(j =
1
; j < (n-i); j++){
if
(a[j-
1
] > a[j]){
t = a[j-
1
];
a[j-
1
]=a[j];
a[j]=t;
}
}
}
}
}
Java
Bubble Sort Program