Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
1
173050031-183050016-183050011-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
KSHITIJ SINGHA
173050031-183050016-183050011-git
Commits
74f8a471
Commit
74f8a471
authored
Sep 23, 2018
by
KSHITIJ SINGHA
Browse files
Options
Browse Files
Download
Plain Diff
merged master with merge-sort
parents
ebe6a3b5
da949617
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
0 deletions
+13
-0
Makefile
Makefile
+4
-0
main.cpp
main.cpp
+4
-0
main.o
main.o
+0
-0
sorting.cpp
sorting.cpp
+1
-0
sorting.h
sorting.h
+4
-0
sorting.o
sorting.o
+0
-0
No files found.
Makefile
View file @
74f8a471
...
...
@@ -13,6 +13,7 @@ sorting.o: sorting.cpp
clean
:
rm
-rf
a.out
<<<<<<<
HEAD
=======
CC
=
g++
...
...
@@ -28,3 +29,6 @@ sorting.o: sorting.cpp sorting.h
clean
:
rm
-rf
*
.o
>>>>>>>
merge-sort
=======
>>>>>>>
da94961751a78074e353150eec99910db0c9a8fc
main.cpp
View file @
74f8a471
...
...
@@ -4,7 +4,11 @@
using
namespace
std
;
<<<<<<<
HEAD
<<<<<<<
HEAD
=======
//from header file
>>>>>>>
da94961751a78074e353150eec99910db0c9a8fc
vector
<
int
>
sort_custom
(
vector
<
int
>&
a
);
void
printVector
(
vector
<
int
>
a
);
...
...
main.o
0 → 100644
View file @
74f8a471
File added
sorting.cpp
View file @
74f8a471
<<<<<<<
HEAD
#include <vector>
#include "sorting.h"
//
using
namespace
std
;
vector
<
int
>
sort_custom
(
const
vector
<
int
>&
a
)
{
...
...
sorting.h
View file @
74f8a471
using
namespace
std
;
<<<<<<<
HEAD
<<<<<<<
HEAD
=======
//func
>>>>>>>
da94961751a78074e353150eec99910db0c9a8fc
vector
<
int
>
sort_custom
(
vector
<
int
>&
a
);
void
printVector
(
vector
<
int
>
a
);
=======
...
...
sorting.o
0 → 100644
View file @
74f8a471
File added
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