-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
30 lines (25 loc) · 1 KB
/
main.cpp
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
/*----------------------------------------------------------------
Copyright (c) 2018 Author: Jagadeesh Vasudevamurthy
file: main.cpp
tocompile: g++ knapsackbase.cpp knapsackdp.cpp main.cpp
-----------------------------------------------------------------*/
/*----------------------------------------------------------------
knapsackdp class
-----------------------------------------------------------------*/
/*----------------------------------------------------------------
All includes here
-----------------------------------------------------------------*/
#include "knapsackdp.h"
/*----------------------------------------------------------------
main
NOTHING CAN BE CHANGED BELOW
-----------------------------------------------------------------*/
void main() {
#ifdef _WIN32
_CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);
#endif
knapsackdp a;
cout << "You are amazing. Bring me a bar of Chocolate\n";
system("pause");
cout << "knapsackdp.cpp ends\n";
}