陣列實現集合的並,交,差

2021-08-30 18:25:59 字數 1020 閱讀 8367

/**

* 通過陣列操作集合,實現並,交,差

* @author breathe**/

class setoperator }}

}/**

* 實現陣列集合setone,settwo的差運算

* setone - settwo

* @param setone

* @param settwo

*/public void difference(int setone, int settwo)

}if(!flag) }}

/*** 實現陣列集合setone,settwo的並運算

* @param setone

* @param settwo

*/public void union(int setone, int settwo)

for(int i = 0; i < settwo.length; i++)

}if(!flag) }}

public void prset(int set)

system.out.println();

}public class setoperatortest ;

int two = ;

setoperator so = new setoperator();

system.out.println("集合1為:");

so.prset(one);

system.out.println("集合2為:");

so.prset(two);

system.out.println("兩個集合的並為:");

so.union(one, two);

system.out.println("\n兩個集合的交為:");

so.intersection(one, two);

system.out.println("\n集合1和集合2的差為:");

so.difference(one, two);}}

集合的並交差

include using namespace std include typedef struct lnode 定義結構體型別指標 linklist void in put linklist l 定義輸入集合函式 void out put linklist l 定義輸出集合函式 cout n vo...

集合運算 並 交 差運算

已知所給集合 a 和 b,求 a 與 b 的並集 c c a b 已知所給集合 a 和 b,求 a 與 b 的交集 c c a b 已知所給集合 a 和 b,求 a 與 b 的差集 c c a b 離散數學中的簡單的集合運算,由c語言編寫,思路非常簡單,如下 include intinterecti...

jmu ds 集合的並交差運算

7 1 jmu ds 集合的並交差運算 15 分 有兩個整數集合a和b,現在要求實現集合的並 交 差運算。例如a b 則集合的並c a b 而集合的交 c a b 集合的差c a b 集合a和b中元素個數在1 100之間。三行,第一行分別為集合a,b的個數 第二行為a集合的資料 第三行為b集合的資料...