摘要: #include #include using namespace std; int* make_pmt(const char *p) //得到回溯的数组 { unsigned int len = strlen(p); int *ret = static_cast(malloc(sizeof(int)*len)); if (NULL != ret) { ... 阅读全文
posted @ 2018-09-17 18:44 清浅...忆回 阅读(108) 评论(0) 推荐(0) 编辑