Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
1
170050081-170050095-170050098-git
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DODDI SAILENDRA BATHI BABU
170050081-170050095-170050098-git
Commits
c6a38013
Commit
c6a38013
authored
Aug 26, 2018
by
NARISIM SETTI CHARAN TEJA
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update merge-sort to reflect API update
parent
160db743
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
sorting.cpp
sorting.cpp
+2
-2
No files found.
sorting.cpp
View file @
c6a38013
...
...
@@ -62,8 +62,8 @@ void mergeSort(vector<int> &arr, int l, int r)
}
}
vector
<
int
>
sort_custom
(
vector
<
int
>
data
){
mergeSort
(
data
,
0
,
data
.
size
()
-
1
);
vector
<
int
>
sort_custom
(
vector
<
int
>
data
,
int
startidx
,
int
endidx
){
mergeSort
(
data
,
startidx
,
endidx
);
return
data
;
}
//comment
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment