- 博客(2)
- 资源 (2)
- 收藏
- 关注
原创 重新实现String
重新实现String#pragma once #include<string.h> #include<iostream>using namespace std; class String { private: char*data; int size;public: String(char*s=""); ~String(); int Search(char*pat
2016-04-28 22:41:46
329
原创 dfs实现迷宫
自己想了一晚上没睡觉的成果。 我能说我现在越来越觉得编程有趣了么~ 堆栈的头文件 #include"stdafx.h" #define DEFAULTSIZE 100; #define OK 1; #define FALSE 0; template//回调函数 void visit(ElemType x) { cout << x.row<<","<<x.col << endl;
2016-04-15 12:28:37
851
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人