예제 #1
0
        /// <summary>
        /// Конструктор.
        /// </summary>
        public HashTableForString(IHashFunction f1, IRehashFunction f2)
        {
            HashFunc   = f1;
            ReHashFunc = f2;
            this.size  = 0;
            int maxArraySize = HashFunc.GetMaxValue();

            this.values = new Cell[maxArraySize];
        }