摘要: //poj1056 immediate decodablity//AC of gcc#include <stdio.h>#include <string.h>#define SIZE 2000#define MAX_BIT_NUM 20#define MAX_LINES 20//bool is not supported by GCC#define bool int#define true 1#define false 0typedef struct input_string { char data[MAX_BIT_NUM]; int length;}input_str 阅读全文
posted @ 2013-06-02 23:41 xiaowenchao 阅读(231) 评论(0) 推荐(0) 编辑