using Towel.DataStructures;
static void Main(string[] args)
Console.WriteLine("You are runnning the Algorithms example.");
Console.WriteLine("======================================================");
Console.WriteLine(" Sorting Algorithms----------------------");
int[] dataSet = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
Console.Write(" Data Set:" + string.Join(", ", dataSet.Select(x => x.ToString())));
Console.Write(" Shuffle (Randomizing): " + string.Join(", ", dataSet.Select(x => x.ToString())));
Console.Write(" Bubble: " + string.Join(", ", dataSet.Select(x => x.ToString())));
Console.WriteLine(" shuffling dataSet...");
Console.Write(" Selection: " + string.Join(", ", dataSet.Select(x => x.ToString())));
Console.WriteLine(" shuffling dataSet...");
Console.Write(" Insertion: " + string.Join(", ", dataSet.Select(x => x.ToString())));
Console.WriteLine(" shuffling dataSet...");
Console.Write(" Quick: " + string.Join(", ", dataSet.Select(x => x.ToString())));
Console.WriteLine(" shuffling dataSet...");
Sort.Merge(Compute.Compare, dataSet);
Console.Write(" Merge: " + string.Join(", ", dataSet.Select(x => x.ToString())));
Console.WriteLine(" shuffling dataSet...");
Sort.Heap(Compute.Compare, dataSet);
Console.Write(" Heap: " + string.Join(", ", dataSet.Select(x => x.ToString())));
Console.WriteLine(" shuffling dataSet...");
Sort.OddEven(Compute.Compare, dataSet);
Console.Write(" OddEven: " + string.Join(", ", dataSet.Select(x => x.ToString())));
Console.Write(" Bogo: Disabled (takes forever)");
#region Graph Search (Using Graph Data Structure)
Console.WriteLine(" Graph Searching----------------------");
IGraph<int> graph = new GraphSetOmnitree<int>()
throw new NotImplementedException();
int cost(int from, int to)
if (from == 0 && to == 1)
if (from == 0 && to == 2)
if (from == 1 && to == 3)
if (from == 2 && to == 3)
if (from == 0 && to == 3)
throw new Exception("invalid path cost computation");
Stepper<int> aStar_path = Search.Graph<int, int>(0, graph, heuristic, cost, goal);
Console.Write(" A* Path: ");
aStar_path(i => Console.Write(i + " "));
Stepper<int> greedy_path = Search.Graph<int, int>(0, graph, heuristic, goal);
Console.Write(" Greedy Path: ");
greedy_path(i => Console.Write(i + " "));
#region Graph Search (Vector Game-Style Example)
Console.WriteLine(" Graph Searching (Vector Game-Style Example)-------------------");
Console.WriteLine(" Debug the code. The path is to large to write to the console.");
Vector<float> enemyLocation = new Vector<float>(-100f, 0f, -50f);
Vector<float> playerLocation = new Vector<float>(200f, 0f, -50f);
float enemyAttackRange = 3f;
Vector<float> rockLocation = new Vector<float>(15f, 0f, -40f);
ISet<Vector<float>> alreadyUsed = new SetHashLinked<Vector<float>>();
Vector<float> validationVectorStorage = null;
bool validateMovementLocation(Vector<float> location)
location.Subtract(rockLocation, ref validationVectorStorage);
float magnitude = validationVectorStorage.Magnitude;
if (magnitude <= rockRadius)
if (alreadyUsed.Contains(location))
void neighborFunction(Vector<float> currentLocation, Step<Vector<float>> neighbors)
float distanceResolution = 1;
float x = currentLocation.X;
float y = currentLocation.Y;
float z = currentLocation.Z;
Vector<float> north = new Vector<float>(x + distanceResolution, y, z);
if (validateMovementLocation(north))
Vector<float> east = new Vector<float>(x, y, z + distanceResolution);
if (validateMovementLocation(east))
Vector<float> south = new Vector<float>(x - distanceResolution, y, z);
if (validateMovementLocation(south))
Vector<float> west = new Vector<float>(x, y, z - distanceResolution);
if (validateMovementLocation(west))
Vector<float> heuristicVectorStorage = null;
float heuristicFunction(Vector<float> currentLocation)
currentLocation.Subtract(playerLocation, ref heuristicVectorStorage);
return heuristicVectorStorage.Magnitude;
Vector<float> mudLocation = new Vector<float>(15f, 0f, -70f);
Vector<float> costVectorStorage = null;
float costFunction(Vector<float> from, Vector<float> to)
to.Subtract(mudLocation, ref costVectorStorage);
float magnitude = costVectorStorage.Magnitude;
if (magnitude <= mudRadius)
Vector<float> goalVectorStorage = null;
bool goalFunction(Vector<float> currentLocation)
currentLocation.Subtract(playerLocation, ref goalVectorStorage);
float magnitude = goalVectorStorage.Magnitude;
if (magnitude <= enemyAttackRange)
Stepper<Vector<float>> aStarPath =
Stepper<Vector<float>> greedyPath =
Vector<float>[] aStarPathArray = aStarPath.ToArray();
Vector<float>[] greedyPathArray = greedyPath.ToArray();
float astartTotalCost = Compute.Add<float>(step =>
for (int i = 0; i < aStarPathArray.Length - 1; i++)
step(costFunction(aStarPathArray[i], aStarPathArray[i + 1]));
float greedyTotalCost = Compute.Add<float>(step =>
for (int i = 0; i < greedyPathArray.Length - 1; i++)
step(costFunction(greedyPathArray[i], greedyPathArray[i + 1]));
Console.WriteLine("============================================");
Console.WriteLine("Example Complete...");