摘要: 这里是源代码。。。。就不解释了。。。心碎#include <stdio.h>#include <stdlib.h>#include <string.h>#define MIN 200#define MAX 40000#define LEN sizeof(struct string)struct string{ int data; struct string * next;};int reverse(int str[],int len){ int temp; int i; for(i = 0;i < ( len + 1 )/ 2; i++){ temp 阅读全文
posted @ 2012-07-16 16:29 crazypurple 阅读(723) 评论(2) 推荐(0) 编辑