FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Data-Structures-Algorithms/Sorting/bubblesort.cpp at master · baamboohulk/Data-Structures-Algorithms · GitHub
baamboohulk
/
Data-Structures-Algorithms
Public
forked from
CodersForLife/Data-Structures-Algorithms
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
Data-Structures-Algorithms
/
Sorting
/
bubblesort.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
34 lines (26 loc) · 617 Bytes
Breadcrumbs
Data-Structures-Algorithms
/
Sorting
/
bubblesort.cpp
Copy path
File metadata and controls
34 lines (26 loc) · 617 Bytes
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
#
include
<
stdio.h
>
int
main
()
{
int
array[
100
], n, c, d, swap;
printf
(
"
Enter number of elements
\n
"
);
scanf
(
"
%d
"
, &n);
printf
(
"
Enter %d integers
\n
"
, n);
for
(c =
0
; c < n; c++)
scanf
(
"
%d
"
, &array[c]);
for
(c =
0
; c < ( n -
1
); c++)
{
for
(d =
0
; d < n - c -
1
; d++)
{
if
(array[d] > array[d+
1
])
/*
For decreasing order use <
*/
{
swap = array[d];
array[d] = array[d+
1
];
array[d+
1
] = swap;
}
}
}
printf
(
"
Sorted list in ascending order:
\n
"
);
for
( c =
0
; c < n ; c++ )
printf
(
"
%d
\n
"
, array[c]);
return
0
;
}
Back
|
FazBrowse Home
|
New Git URL