Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/7ing/Career-Cup-CPP-Solutions
Career Cup C++ Solutions
https://github.com/7ing/Career-Cup-CPP-Solutions
Last synced: 18 days ago
JSON representation
Career Cup C++ Solutions
- Host: GitHub
- URL: https://github.com/7ing/Career-Cup-CPP-Solutions
- Owner: 7ing
- Created: 2012-08-15T19:52:23.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-11-08T19:28:26.000Z (about 11 years ago)
- Last Synced: 2024-08-10T06:01:57.690Z (3 months ago)
- Language: C
- Homepage:
- Size: 489 KB
- Stars: 28
- Watchers: 11
- Forks: 17
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
# Author: J. Liu, B. Fu
# Email: [email protected], [email protected]Git: https://github.com/mitkook/Career-Cup-CPP-Solutions.wiki.git
This project try to implement career cup 150 (ver. 4.0) exercises using C++.
However, it would not cover Chapter 6 & 7.
It will provides several well-known algorithms and data structures implementations.IDE: Eclipse
Linux Compiler: Linux GCC , GNU's g++
Windows Compiler: MinGW GCC, CDT Internal BuilderNOTE: Please configure your compiler and "gcc include" path before compiling this project.
1. right-click your project name
2. select 'Properties' (normally is last one)
3. C/C++ Build -> Tool Chain Editor :
Current toolchain: (select your own compiler)
Current builder: GNU Make Builder
4. Make sure your gcc library path is correct:
C/C++ General -> Paths and Symbols -> GNU C++ (e.g., ..\MinGW\lib\gcc\mingw32\4.6.2\include\c++)
5. Done.PS: For C++11 (gcc 4.7.x) user: right-click the project and go to "Properties"
1. C/C++ Build -> Settings -> Tool Settings -> GCC C++ Compiler -> Miscellaneous -> Other Flags. Put "-std=c++0x" at the end
2. C/C++ General -> Paths and Symbols -> Symbols -> GNU C++. Click "Add..." and paste "__GXX_EXPERIMENTAL_CXX0X__" into "Name" and leave "Value" blank.