离散数学
Thorold's Deer
It's easy to say , it's much more difficult to do.
展开
-
大二(上)离散数学 主析取范式与主合取范式
#include <stdio.h>#include <stdlib.h>#include <string.h>#include <conio.h>#include <math.h>#define N 50void panduan(int b[N], int f);//赋值函数int tkh(char sz[N], cha...原创 2019-01-19 13:42:26 · 5386 阅读 · 1 评论 -
大二(上)离散数学 有补格的判定
#include<iostream>#include<stdio.h>#define MAX 50using namespace std;int num = 0; //正整数int n = 0;int a[MAX][MAX] = { 0 }; //关系矩阵int b[MAX] = { 0 }; //存1到num中能整除num的数字int ...原创 2019-01-19 13:38:34 · 3974 阅读 · 0 评论 -
大二(上)离散数学 欧拉图的判定
#include<iostream>#include<stdio.h>#include<ctime>using namespace std;class Euler{public: Euler(int num); ~Euler(); void DFS(int begin);//公有的深度优先搜索函数 void inputEdge(int ...原创 2019-01-19 13:36:07 · 3735 阅读 · 4 评论 -
大二(上)离散数学 集合的二元关系
#include <iostream>#include <string.h>using namespace std;const int MAX = 100;int num;int rnum;int R[MAX][MAX];int A[MAX][MAX];void Warshall() //Warshall算法{ for (int i = 1...原创 2019-01-19 13:40:12 · 2401 阅读 · 0 评论