FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Java/Sorts/BubbleSort.java at master · debugmm/Java · GitHub
debugmm
/
Java
Public
forked from
TheAlgorithms/Java
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Java
/
Sorts
/
BubbleSort.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
55 lines (48 loc) · 1.45 KB
Breadcrumbs
Java
/
Sorts
/
BubbleSort.java
Copy path
File metadata and controls
55 lines (48 loc) · 1.45 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package
Sorts
;
import
static
Sorts
.
SortUtils
.*;
/**
* @author Varun Upadhyay (https://github.com/varunu28)
* @author Podshivalov Nikita (https://github.com/nikitap492)
* @see SortAlgorithm
*/
class
BubbleSort
implements
SortAlgorithm
{
/**
* Implements generic bubble sort algorithm.
*
* @param array the array to be sorted.
* @param <T> the type of elements in the array.
* @return the sorted array.
*/
@
Override
public
<
T
extends
Comparable
<
T
>>
T
[]
sort
(
T
[]
array
) {
for
(
int
i
=
0
,
size
=
array
.
length
;
i
<
size
-
1
; ++
i
) {
boolean
swapped
=
false
;
for
(
int
j
=
0
;
j
<
size
-
1
-
i
; ++
j
) {
if
(
greater
(
array
[
j
],
array
[
j
+
1
])) {
swap
(
array
,
j
,
j
+
1
);
swapped
=
true
;
}
}
if
(!
swapped
) {
break
;
}
}
return
array
;
}
/** Driver Code */
public
static
void
main
(
String
[]
args
) {
Integer
[]
integers
= {
4
,
23
,
6
,
78
,
1
,
54
,
231
,
9
,
12
};
BubbleSort
bubbleSort
=
new
BubbleSort
();
bubbleSort
.
sort
(
integers
);
for
(
int
i
=
0
;
i
<
integers
.
length
-
1
; ++
i
) {
assert
integers
[
i
] <=
integers
[
i
+
1
];
}
print
(
integers
);
/* output: [1, 4, 6, 9, 12, 23, 54, 78, 231] */
String
[]
strings
= {
"c"
,
"a"
,
"e"
,
"b"
,
"d"
};
bubbleSort
.
sort
(
strings
);
for
(
int
i
=
0
;
i
<
strings
.
length
-
1
;
i
++) {
assert
strings
[
i
].
compareTo
(
strings
[
i
+
1
]) <=
0
;
}
print
(
bubbleSort
.
sort
(
strings
));
/* output: [a, b, c, d, e] */
}
}
Back
|
FazBrowse Home
|
New Git URL