FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
interviews/leetcode/array/WiggleSort.java at master · codingOnGithub/interviews · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
codingOnGithub
/
interviews
Public
forked from
kdn251/interviews
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
interviews
/
leetcode
/
array
/
WiggleSort.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
16 lines (13 loc) · 528 Bytes
Breadcrumbs
interviews
/
leetcode
/
array
/
WiggleSort.java
Copy path
File metadata and controls
16 lines (13 loc) · 528 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
// Given an unsorted array nums, reorder it in-place such that nums[0] <= nums[1] >= nums[2] <= nums[3]....
// For example, given nums = [3, 5, 2, 1, 6, 4], one possible answer is [1, 6, 2, 5, 3, 4].
public
class
WiggleSort
{
public
void
wiggleSort
(
int
[]
nums
) {
for
(
int
i
=
1
;
i
<
nums
.
length
;
i
++) {
int
current
=
nums
[
i
-
1
];
if
((
i
%
2
==
1
) == (
current
>
nums
[
i
])) {
nums
[
i
-
1
] =
nums
[
i
];
nums
[
i
] =
current
;
}
}
}
}
Back
|
FazBrowse Home
|
New Git URL