This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Address Book Demo Class | |
#include <iostream> | |
#include <string> | |
#include <vector> | |
#include <algorithm> | |
using namespace std; | |
struct address |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
TVector version 1.3 | |
A project to show how to make your own kind of genetic vector class | |
*/ | |
#include <iostream> | |
using namespace std; | |
//Default vector size. | |
const size_t DEFAULT_SIZE = 4; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Morse Code Translator v1.0 | |
// Ben a.k.a By DreamVB | |
#include <iostream> | |
#include <string> | |
#include <vector> | |
using namespace std; | |
//Mose code map | |
string mose_code = ".- -... -.-. -.. . ..-. --. .... .. .--- -.- " |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// A very basic Lorem Ipsum Generator | |
#include <iostream> | |
#include <string> | |
#include <vector> | |
#include <time.h> | |
using namespace std; | |
std::vector<string>m_data; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//A Custom map data structure using arrays and classes | |
//Features | |
// Add new keys and values | |
// Edit a key and set a new value | |
// Delete a key and it's value | |
// Remove all keys to clear up the class | |
// Get key from an index usfull it you don't know the key | |
#include <iostream> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Phone book example using std map | |
#include <iostream> | |
#include <string> | |
#include <map> | |
using namespace std; | |
using std::string; | |
class TPhoneBook{ | |
private: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//UK lotto generator | |
#include <iostream> | |
#include <vector> | |
#include <time.h> | |
#include <algorithm> | |
using namespace std; | |
int main(){ | |
int x = 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Sentence Generator version 1.0 | |
#include <iostream> | |
#include <string> | |
#include <time.h> | |
#include <array> | |
#include <vector> | |
using namespace std; | |
const std::string make_sentence(void){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Binary Search Demo | |
// by Ben a.k.a DreamVB | |
// follow me https://github.com/DreamVB | |
#include <iostream> | |
using namespace std; | |
//Bubble sort | |
template <typename T> | |
void bubble_sort(T *arr, size_t size){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Sorting Class with 5 sorting algorithms that can sort arrays | |
//Compiled in Visual Studio 2013 but should work on any C++ compiler with a few tweaks. | |
//Incase you need som info on sorting algorithms | |
//https://en.wikipedia.org/wiki/Sorting_algorithm | |
// Algorithms in this class | |
// 1 Boubble Sort | |
// 2 Merge Sort | |
// 3 Selection Sort |