摘要: Mine_Clear.h#ifndef _MINE_CLEAR_H_#include#include#include#include#define _MINE_CLEAR_H_#define ROW 9int g... 阅读全文
posted @ 2017-12-08 21:00 VictorChang 阅读(199) 评论(0) 推荐(0) 编辑
摘要: #include#include void printPan(char arr[][3]){ int i=0; printf(" ——————\n"); printf("| %c | %c | %c |\n",a... 阅读全文
posted @ 2017-12-08 15:50 VictorChang 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 二分查找的非递归与递归实现:#includeint binarry_Search(int arr[], int len, int value){ //采用左闭右闭区间方式 int left=0,right=le... 阅读全文
posted @ 2017-12-08 14:53 VictorChang 阅读(338) 评论(0) 推荐(0) 编辑