public static void Main(string[] args)
        {
            Linear linear = new Linear();

            linear.BubbleSortSearch();

            ReplaceAllSpaces("Mr 3ohn Smith");
            //var results = new BinarySearch();
            //results.CheckBinaryResults();
            Permutations("ca", "ac");

            var queue = new Queue(5);

            queue.InsertToTheQueue(60);
            queue.InsertToTheQueue(70);
            queue.InsertToTheQueue(80);
            queue.InsertToTheQueue(90);
            queue.InsertToTheQueue(100);
            queue.InsertToTheQueue(10);
            queue.InsertToTheQueue(20);
            queue.InsertToTheQueue(30);
            queue.InsertToTheQueue(40);
            queue.InsertToTheQueue(50);

            //call the display on the other side
            queue.Display();


            Console.ReadLine();
        }