摘要: ```cpp include include using namespace std; int f[102]; int found(int x){ return f[x] = f[x] == x ? x : found(f[x]); // if(x == f[x]) // return x; // 阅读全文
posted @ 2016-03-17 23:07 阿文的博客 阅读(94) 评论(0) 推荐(0) 编辑