ubuntu qt中std::string赋值时崩溃 Post author:张拓 Post published:2023年 3月 17日 Post category:杂 Post comments:0评论 ubuntu qt中std::string赋值崩溃 取消勾选Run un terminal 继续阅读ubuntu qt中std::string赋值时崩溃
qt判断窗口最大化、最小化、是否可见 Post author:张拓 Post published:2023年 3月 17日 Post category:qt Post comments:0评论 窗口是否最大化 this->window()->isMaximized() 窗口是否最小化 this->… 继续阅读qt判断窗口最大化、最小化、是否可见
qt显示web页面 Post author:张拓 Post published:2023年 3月 17日 Post category:qt Post comments:0评论 qt对话框界面创建Widget控件。 右键点击Widget控件,选择提升为->QWebEngineView 然后在… 继续阅读qt显示web页面
计算机编码 Post author:张拓 Post published:2023年 2月 9日 Post category:博客 Post comments:0评论 计算机编码指电脑内部代表文字、符号、字母或数字的方式。电子计算机的文数字编码,是指在计算机硬件软件中对于文字或数值的内部… 继续阅读计算机编码
迭代深化深度优先搜索 Post author:张拓 Post published:2023年 1月 6日 Post category:search/算法 Post comments:0评论 迭代深化深度优先搜索 (iterative deepening depth-first search (IDS or I… 继续阅读迭代深化深度优先搜索
蒙特卡洛树搜索 Post author:张拓 Post published:2023年 1月 6日 Post category:search/算法 Post comments:0评论 蒙特卡洛树搜索(英语:Monte Carlo tree search;简称:MCTS)是一种用于某些决策过程的启发式搜索… 继续阅读蒙特卡洛树搜索
范围最值查询 Post author:张拓 Post published:2023年 1月 5日 Post category:search/算法 Post comments:0评论 范围最值查询(英语:Range Minimum Query),是针对数据集的一种条件查询。若给定一个数组{\displa… 继续阅读范围最值查询
舞蹈链 Post author:张拓 Post published:2023年 1月 5日 Post category:search/算法 Post comments:0评论 在计算机科学中, 舞蹈链(Dancing Links), 也叫 DLX, 是由 Donald Knuth 提出的数据结构… 继续阅读舞蹈链
线性散列 Post author:张拓 Post published:2023年 1月 5日 Post category:search/算法 Post comments:0评论 线性散列 (LH) 是一种动态数据结构,它实现哈希表并一次增加或收缩一个存储桶。它是由Witold Litwin于198… 继续阅读线性散列
线性探测 Post author:张拓 Post published:2023年 1月 5日 Post category:search/算法 Post comments:0评论 线性探测是计算机程序解决散列表冲突时所采取的一种策略。散列表这种数据结构用于保存键值对,并且能通过给出的键来查找表中对应… 继续阅读线性探测