日期:2010-01-01 浏览次数:20385 次
编写一个类实现数组元素的交集和并集运算
要求:
1、要有构造函数对数组初始化
2、包含交集和并集两个单独的方法
3、要有一个打印数组元素的方法
4、编写一个测试类测试数组
5、要求控制台中要分别输出两个原数组以及将交集和并集运算结果输出
代码:
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace ConsoleApplication4
- {
- class Program
- {
- static void Main(string[] args)
- {
- int[] A = { 65, 42, 11, 8, -4};
- int[] B = { 2,90, 2, 11, 33, 8};
- Console.WriteLine("合并前的元素集A:");
- foreach (int x in A)
- {
- Console.Write("{0} ", x);
- }
- Console.WriteLine("\n合并前的元素集B:");
- foreach (int x in B)
- {
- Console.Write("{0} ", x);
- }
- Set s = new Set(A, B);
- if (s.SetA != null && s.SetB != <