Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
/* | |
Author: Yahia Bakour | |
License: MIT License | |
*/ | |
#include <unistd.h> | |
#include<stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <sys/types.h> |
// By your BOI : Yahia B | |
// feel free to take whatever you would like | |
#ifndef SkipList_H | |
#define SkipList_H | |
#include <iostream> | |
#include <cstdlib> | |
#include <limits> | |
#include <random> | |
#include <ctime> | |
#include <vector> |
// By your BOI : Yahia B | |
// feel free to take whatever you would like | |
#ifndef DLL_H | |
#define DLL_H | |
#include <iostream> | |
#include <cstdlib> | |
#include <string> | |
#include <vector> |
/*BST CLASS AND FUNCTIONS BY YOUR BOI: YAHIA B. | |
All of this code is open_Source so feel free to take whatever you'd like. | |
Note: disp() and display(Node* P, int indent) logic and code are NOT mine. | |
*/ | |
#include "Bst.h" | |
#include <iomanip> | |
int numberofnodes; |