网站首页 站内搜索

搜索结果

查询Tags标签: fidx,共有 1条记录
  • C++ 实现分块查找(链式存储结构)(完整代码)

    #include <iostream> using namespace std; const int INFMIN = -999999;class Node {friend class IdxTab; public:Node() :next(nullptr) {}; private:int w;Node *next; };class IdxNode {friend class IdxTab; private:int maxk;Node *fidx; };class IdxTab {…

    2021/5/8 22:28:03 人评论 次浏览
扫一扫关注最新编程教程