|
maze.sln
Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Maze", "WindowsFormsApplication3\Maze.csproj", "{6377B6AC-CFA6-4930-99E2-FD6FB7F77DF1}"
EndProject
Global
GlobalSection(SolutionConfigura
|
- 페이지 37페이지
- 가격 3,000원
- 등록일 2012.06.13
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
CPP=cl.exe
RSC=rc.exe C를 이용한 미로 찾기
mazeeasy.dsw
mazeeasy.ncb
mazeeasy.opt
mazeeasy.plg
mazeeasy.c
mazeeasy.dsp
[Debug]
mazeeasy.exe
mazeeasy.ilk
mazeeasy.obj
mazeeasy.pch
mazeeasy.pdb
vc60.idb
vc60.pd
|
- 페이지 13페이지
- 가격 2,000원
- 등록일 2011.10.20
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
미로찾기.exe
미로찾기.ilk
미로찾기.obj
미로찾기.pch
미로찾기.pdb
미로찾기.c
미로찾기.cpp
미로찾기.dsp
미로찾기.dsw
미로찾기.ncb
미로찾기.opt
미로찾기.plg
구현한 함수
1.스택 과 우선법(right hand on wall),좌선법(left hand on wall)
2.중
|
- 페이지 3페이지
- 가격 1,000원
- 등록일 2011.07.11
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
'1', '1', '1' },
{ '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1' } };
char mark[][] = map1;
int[][] move = { { 0, -1 }, { -1, 0 }, { 0, 1 }, { 1, 0 } };
int startX, startY, exitX, exitY, checkX, checkY;
int checknum = 0;
} 스레드와 스택을 활용한 미로
|
- 페이지 7페이지
- 가격 2,000원
- 등록일 2016.05.26
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include <iostream>
using namespace std;
//==============================================================================//
// ※ 미로찾기 (파일처리)
// - 콘솔을 이용한 간단한 미로찾기 게임을 만들어보자.
// - 학습내용 :
// 파일을 읽고 쓰는 법 / 콘솔
|
- 페이지 3페이지
- 가격 500원
- 등록일 2011.07.26
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|