Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit bff186b

Browse files
Merge pull request #289 from mjolewis/develop
Style: correct minor spacing in code
2 parents 94647b0 + 1df1adb commit bff186b

File tree

1 file changed

+1
-1
lines changed
  • Data Structures with Java/Code/src/edu/bostonuniversity/utils

1 file changed

+1
-1
lines changed

‎Data Structures with Java/Code/src/edu/bostonuniversity/utils/Quicksort.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ private static void quicksort(int[] data, int lo, int hi) {
8282
lt = lo;
8383
while (i <= gt) {
8484
if (data[i] < pivot) { swap(data, lt++, i++); }
85-
else if (data[i] > pivot) { swap(data, i, gt--); }
85+
else if (data[i] > pivot) { swap(data, i, gt--); }
8686
else { i++; }
8787
}
8888
quicksort(data, lo, lt - 1);

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /