Example #1
0
        static void Main(string[] args)
        {
            Console.WriteLine("Zbiór wykorzystujący Hashtable z .NET");

            ZbiórNaHashtable s1 = new ZbiórNaHashtable();
            ZbiórNaHashtable s2 = new ZbiórNaHashtable();

            s1.Insert(22);
            s1.Insert(522);
            s1.Insert(922);
            s1.Insert(677);
            s1.Insert(222);
            s1.Insert(377);

            s2.Insert(122);
            s2.Insert(522);
            s2.Insert(822);
            s2.Insert(677);

            Console.WriteLine(s1);
            Console.WriteLine(s2);

            s1.Delete(377);
            Console.WriteLine(s1);

            ZbiórNaHashtable s3 = ZbiórNaHashtable.Union(s1, s2);

            Console.WriteLine(s3);

            ZbiórNaHashtable s4 = ZbiórNaHashtable.Intersection(s1, s2);

            Console.WriteLine(s4);

            Console.ReadKey();
        }
Example #2
0
        // Intersection(s1, s2) - s1 ∩ s2 (iloczyn zbiorów, elementy wspólne)
        public static ZbiórNaHashtable Intersection(ZbiórNaHashtable s1, ZbiórNaHashtable s2)
        {
            ZbiórNaHashtable result = new ZbiórNaHashtable();

            foreach (int k in s1.Values)
            {
                if (s2.Contains(k))
                {
                    result.Insert(k);
                }
            }
            return(result);
        }
Example #3
0
        // Union(s1, s2)  - s1 U s2 - (suma zbiorów)
        public static ZbiórNaHashtable Union(ZbiórNaHashtable s1, ZbiórNaHashtable s2)
        {
            ZbiórNaHashtable result = new ZbiórNaHashtable();

            foreach (int k in s1.Values)
            {
                result.Insert(k);
            }
            foreach (int k in s2.Values)
            {
                result.Insert(k);
            }
            return(result);
        }