2024年10月9日

摘要: 参考链接: https://refactoringguru.cn/design-patterns/behavioral-patterns 阅读全文
posted @ 2024-10-09 11:27 行者常至,为者长成 阅读(3) 评论(0) 推荐(0) 编辑
 
摘要: pytest参数: -s用于输出调试信息,-v显示详细信息,-n启用多线程或分布式测试,-k根据用例名称筛选,-m通过标记执行特定用例,-x和--maxfail在遇到失败时停止测试,以及--reruns重跑失败的用例。这些参数帮助优化测试流程和提升效率。 学习链接: https://www.cnbl 阅读全文
posted @ 2024-10-09 10:58 行者常至,为者长成 阅读(8) 评论(0) 推荐(0) 编辑
 
摘要: 内存划分: 一、静态区1、内存越界:数据区内存越界主要指读写某一数据区内存(如全局或静态变量、数组或结构体等)时,超出该内存区域的合法范围读越界和写越界读越界表示读取不属于自己的数据,如读取的字节数多于分配给目标变量的字节数。若所读的内存地址无效,则程序立即崩溃;若所读的内存地址有效,则可读到随机的 阅读全文
posted @ 2024-10-09 10:55 行者常至,为者长成 阅读(12) 评论(0) 推荐(0) 编辑

2022年1月11日

摘要: https://www.cnblogs.com/kyoner/p/11080078.html https://leetcode-cn.com/problems/search-insert-position/solution/te-bie-hao-yong-de-er-fen-cha-fa-fa-mo 阅读全文
posted @ 2022-01-11 15:33 行者常至,为者长成 阅读(106) 评论(0) 推荐(0) 编辑

2021年4月10日

摘要: 一、使用stringstream 类c++中的 <sstream>库定义了三种类:istringstream、ostringstream和stringstream,分别用来进行流的输入、输出和输入输出操作。 二、c++中 stoi将 n 进制的字符串转化为十进制示例:stoi(str, 0, 2); 阅读全文
posted @ 2021-04-10 17:38 行者常至,为者长成 阅读(329) 评论(0) 推荐(0) 编辑
 
摘要: priority_queue的用法 https://blog.csdn.net/xiaoquantouer/article/details/52015928 https://blog.csdn.net/weixin_36888577/article/details/79937886 #include 阅读全文
posted @ 2021-04-10 17:32 行者常至,为者长成 阅读(47) 评论(0) 推荐(0) 编辑

2021年3月5日

摘要: 智能指针的行为类似常规指针,重要的区别是它负责自动释放所指的对象。C++11标准库提供的这两种智能指针的区别在于管理底层指针的方式:shared_ptr允许多个指针指向同一个对象;unique_ptr则"独占"所指向的对象。 C++11提供了三种智能指针:std::shared_ptr, std:: 阅读全文
posted @ 2021-03-05 16:02 行者常至,为者长成 阅读(414) 评论(0) 推荐(0) 编辑

2020年6月19日

摘要: 1、盛水最多的容器 2、三数之和 3、四数之和 阅读全文
posted @ 2020-06-19 15:28 行者常至,为者长成 阅读(165) 评论(0) 推荐(0) 编辑

2020年6月5日

摘要: 1、交换字符串中的元素: https://leetcode-cn.com/problems/smallest-string-with-swaps/solution/bing-cha-ji-by-liyiping/ 并查集详解见博客:https://blog.csdn.net/qq_41593380/ 阅读全文
posted @ 2020-06-05 00:11 行者常至,为者长成 阅读(47) 评论(0) 推荐(0) 编辑

2020年3月30日

摘要: 一、sort函数 在sort函数中使用 greater<>() 和 less<int>()int A[]={1,4,3,7,10};const int N=sizeof(A)/sizeof(int);vector<int>vec(A, A+N); sort(vec.begin(),vec.end() 阅读全文
posted @ 2020-03-30 21:27 行者常至,为者长成 阅读(628) 评论(0) 推荐(0) 编辑