Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            string[] tokens;

            tokens = Console.ReadLine().Split(' ');
            HashTable ht = new HashTable(Convert.ToInt32(tokens[0]));

            tokens = Console.ReadLine().Split(' ');
            foreach (string item in tokens)
            {
                ht.Insert(Convert.ToUInt32(item));
            }

            ht.ShowTable();
        }