Skip to content

Instantly share code, notes, and snippets.

View DreamVB's full-sized avatar
🏠
Working from home

Ben DreamVB

🏠
Working from home
View GitHub Profile
@DreamVB
DreamVB / address.cpp
Created July 6, 2021 20:09
Address Book Class
//Address Book Demo Class
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
struct address
@DreamVB
DreamVB / source.cpp
Last active July 5, 2021 20:39
TVector Class
/*
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;
@DreamVB
DreamVB / morse.cpp
Created June 27, 2021 21:59
Morse Code Translator v1.0
// 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 = ".- -... -.-. -.. . ..-. --. .... .. .--- -.- "
@DreamVB
DreamVB / source.cpp
Created June 26, 2021 21:06
A very basic Lorem Ipsum Generator
// A very basic Lorem Ipsum Generator
#include <iostream>
#include <string>
#include <vector>
#include <time.h>
using namespace std;
std::vector<string>m_data;
@DreamVB
DreamVB / TMapDemo.cpp
Created June 26, 2021 10:40
Custom map data structure using arrays and classes
//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>
@DreamVB
DreamVB / PhoneBook.cpp
Created June 25, 2021 09:52
Phone Book Map Demo
//Phone book example using std map
#include <iostream>
#include <string>
#include <map>
using namespace std;
using std::string;
class TPhoneBook{
private:
@DreamVB
DreamVB / source.cpp
Created June 25, 2021 09:50
UK lotto number generator
//UK lotto generator
#include <iostream>
#include <vector>
#include <time.h>
#include <algorithm>
using namespace std;
int main(){
int x = 0;
@DreamVB
DreamVB / source.cpp
Created June 12, 2021 22:15
Random Sentence Generator
//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){
@DreamVB
DreamVB / source.cpp
Created June 10, 2021 20:14
Binary Search array
//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){
@DreamVB
DreamVB / source.cpp
Last active February 18, 2024 14:26
Sorting Algorithms in C++
//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