--
发布时间:2014-03-20 11:43:40
点击(此处)折叠或打开#include <stdio.h>#include <string.h>#define false 0#define true 1#define N 256int lengthOfLastWord(char *str) { int len,las.........【阅读全文】
发布时间:2014-03-20 10:35:25
点击(此处)折叠或打开#include <stdlib.h>#include <stdio.h>#include <string.h>#include <ctype.h>#include <malloc.h>#include "oj.h"/* 功能:在字符串中找出连续最长的数字串.........【阅读全文】
发布时间:2014-03-17 15:39:37
1、题目简述:在迷宫中找出最长环路的长度,不是找到出路。详细描述:迷宫是由一系列方格组成一个矩形区域,下图是一个 4 * 6 的迷宫 每个方格中都有一条红色的斜线(/或者\),这是墙,无法通过。灰线不是墙,可自由跨越。 在迷宫内,只能在相邻的(有公共边的才算相邻.........【阅读全文】