课程设计
codancer
为信仰而战斗
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
【课程设计】c语言ege库实现五子棋人机和人人对战
#include <graphics.h> #include<bits/stdc++.h> using namespace std; #define MAXN 1000 int visb[MAXN][MAXN];//记录黑棋 int visw[MAXN][MAXN];//记录白棋 int bwin;//标记黑棋获胜 int wwin;//标记白棋子获胜 int step; ...原创 2018-06-27 21:44:24 · 4021 阅读 · 0 评论 -
C++作业(学生成绩管理系统)
#include<iostream> #include<algorithm> #include<string.h> using namespace std; int n,k; //template<class T> //class Display: public binary_function<T, T,bool> //{ //publ...原创 2018-03-23 23:24:04 · 10800 阅读 · 0 评论 -
课程设计之马的遍历
#include<iostream> #include<algorithm> #include<stack> #include<iomanip> using namespace std; #define MAXN 10050 int maze[MAXN][MAXN]; int n,m; struct point { int x; int ...原创 2018-06-21 17:41:57 · 1429 阅读 · 0 评论 -
快排实现
#include<iostream> #include<cstring> using namespace std; void q_sort(int *a,int left,int right) { if(left>=right) { return ; } swap(a[left],a[(left+right)/2]);...原创 2018-04-23 16:27:34 · 219 阅读 · 0 评论
分享