首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴return_0的代码贴全部
#include<iostream>
using namespace std;
int n,m,k,xt,yt,xs,ys,xe,ye;
int ans=0;
char a[100][100];
int dirx[4]={-1,1,0,0};
int diry[4]={0,0,1,-1};
bool vis[100][100]={false};
void dfs(int x,int y){
if(x==xe&&y==ye){
ans++;
return;
......................
阅读全部 | 2020年3月19日 21:21
#include<iostream>
using namespace std;
int n,m,k,xt,yt,xs,ys,xe,ye;
int ans=0;
char a[100][100];
int dirx[4]={-1,1,0,0};
int diry[4]={0,0,1,-1};
bool vis[100][100]={false};
void dfs(int x,int y){
if(x==xe&&y==ye){
ans++;
return;
......................
阅读全部 | 2020年3月19日 21:04
/*
Name: games.h
Copyright:
Author: Tc_xk
Date: 16-02-20 14:51
Description: for dev-c++:NOT offical headfile for game making
*/
#include <iostream>
#include <string>
#include<Windows.h>
#include<cstdlib>
#include<ctime>
......................
阅读全部 | 2020年2月27日 11:26
1
return_0