代码搜索:PATH
找到约 10,000 项符合「PATH」的源代码
代码结果 10,000
www.eeworm.com/read/418678/10936124
h pathfinder.h
/***********************
* _PathFinder_h_ *
* A* path finder *
* create by si.si *
* 07.10.18 *
************************/
#ifndef _PathFinder_h_
#define _PathFind
www.eeworm.com/read/272894/10937209
dpr ex.dpr
program Ural_1067(Input,Output);
const
MaxN=500+1;
MaxLen=80+5;
type
TIndex=Longint;
TPath=array[1..MaxN]of string[MaxLen];
var
N:TIndex;
Path:TPath;
procedure QuickSort(l,r:TIndex);
www.eeworm.com/read/272894/10937510
cpp ex_bamboo.cpp
#include
#include
const int Size = 100 + 10;
int dx[] = {0 , 1 , 0 , -1};
int dy[] = {1 , 0 , -1 , 0};
int n , m;
int x0 , Y0;
int px , py;
int L;
int G[Size][Size]
www.eeworm.com/read/272861/10939386
txt 新建 文本文档 (2).txt
命令
功能
用法
DIR
显示磁盘文件目录
DIR[DRIVE:] [PATH]
MD
建立子目录
MD[DRIVE:] NEWPATH
CD
改变当前目录
CD[DRIVE:] NEWPATH
RD
删除一个空目录
RD[DRIVE:] PATH
PATH
规定文件的搜索路经
一般在AUTOEXEC.BAT中
www.eeworm.com/read/272848/10940410
cpp wirerouter.cpp
// find and ouput a shortest wire path in a grid
#include
#include "make2dArray.h"
#include "arrayQueue.h"
#include "position.h"
using namespace std;
// global variables
int*
www.eeworm.com/read/272848/10941093
cpp maze.cpp
// find a path in a maze
#include
#include "arrayStack.h"
#include "position.h"
#include "make2dArray.h"
// globals
int **maze, size;
arrayStack* path; // pointer to s