Lv.3
lessIsBetter
更多个人资料
163
成长值
13
关注
4
粉丝
+ 关注
私信
个人介绍
这个人很懒,什么都没有留下
感兴趣或擅长的领域
大数据、编程语言
个人勋章
TA还没获得勋章~
成长雷达
160
3
0
0
0
个人资料
个人介绍
这个人很懒,什么都没有留下
感兴趣或擅长的领域
大数据、编程语言
达成规则
以上满足
项可达成此勋章
博客
关注
粉丝
论坛
全部时间
全部时间
最近三天
最近一周
最近一月
全部
暂无专栏分类
c++ unordered_set pair自定义比较函数
推荐采用lambda表达式的方式int main(){ static auto hashFunc = [](const std::pair<std::string, std::string> &aPair) { return static_cast<size_t>(std::hash<std::string>{}(aPair.first) ^ std::hash<std:...
C++
lessIsBetter
2024-02-18 20:22:47
1206
0
0
2024-02-18 20:22:47
999+
0
0
c++ goto实现generator
generator的主要的效果就是产生一个输出后,停在原地,直到再次被调用。python自身就带有generator,是一个重要特性,带来了很多便捷。但是c++本身不直接支持generator。如果一定要用的话,利用goto在循环中停止,是可行的。虽然goto普遍被大家诟病,但由于c++基本语法与基础库的局限性,在产生器这种场景,也许goto还不错。#include <iostream>cl...
C++
Generator
lessIsBetter
2023-09-28 11:29:37
5299
0
0
2023-09-28 11:29:37
999+
0
0
c++ 拼接字符串列表
把vector的元素,拼接成为一个字符串。比如元素类型为string的时候,用std::copy函数#include <iostream>#include <sstream>#include <vector>#include <algorithm>#include <iterator>void func1() { std::stringstream ss; std::vector...
C++
lessIsBetter
2023-08-16 14:26:26
5546
0
0
2023-08-16 14:26:26
999+
0
0
c++ 把istream转为ifstream
代码例子:#include <iostream>#include <sstream>#include <fstream>int main() { std::string a = "Hello, World!"; std::istringstream ss; ss.str(a); std::istream &iss(ss); std::ifstream &fs =...
C++
lessIsBetter
2023-08-15 14:44:56
5275
0
0
2023-08-15 14:44:56
999+
0
0
linux 解除端口占用
参考:https://blog.csdn.net/zhu_xun/article/details/168235771.查看8080端口是否被占用:netstat -anp | grep 80802.查看占用8080端口的进程:fuser -v -n tcp 80803.杀死占用8080端口的进程:kill -s 9 1154(自己的进程号).原文链接:https://blog.csdn.ne...
Linux
任务调度
lessIsBetter
2023-08-09 20:21:08
5250
0
0
2023-08-09 20:21:08
999+
0
0
运筹优化解决方案,mark一下
https://www.huaweicloud.com/product/modelarts/optverse.html
lessIsBetter
2023-07-10 17:33:02
5171
0
0
2023-07-10 17:33:02
999+
0
0
python 多维数组笛卡尔积 叉乘
import itertoolsdef _example(): a_list = [["a1", "a2"], ["b1", "b2", "b3"], [f"c{i}" for i in range(5)], [f"d{i}" for i in range(6)]] b_generator = itertools.product(*a_list) c_list = [lis...
Python
数据结构
lessIsBetter
2023-06-16 15:53:24
1655
0
0
2023-06-16 15:53:24
999+
0
0
python defaultdict 妙用二维字典
Python中的defaultdict是一个非常有用的数据结构,它可以让我们在字典中使用默认值,而不必担心键不存在的情况。如果键不存在,defaultdict会自动创建一个默认值。下面是一个简单的例子:from collections import defaultdictd = defaultdict(int)d['a'] += 1d['b'] += 2d['c'] += 3print(d)...
Python
lessIsBetter
2023-06-16 12:57:40
5727
0
0
2023-06-16 12:57:40
999+
0
0
初探Clion+Profiler性能分析
c++什么要做性能分析当程序运行缓慢,希望提高代码性能。有些隐蔽的改用引用的时候,用了传值,这种拼写错误,视检容易遗漏。应该优化为vector的时候,为了图方便误用成了map。多次重复计算,应有预处理计算。道理都懂,但是实践不易。性能分析可以辅助处理上述这些情况。 Clion中运行Profiler写C++,如果程序规模不是特别大到IDE卡顿,Clion还是非常好用。Clion至少在2022...
C++
lessIsBetter
2022-08-25 14:29:55
9764
0
1
2022-08-25 14:29:55
999+
0
1
初探 模拟退火算法、物理思想、代码实现(simulated annealing algorithm)
模拟退火算法概述模拟退火的书籍和贴子非常多,这个贴子讲的就简单易懂https://zhuanlan.zhihu.com/p/404204692。 算法流程简述我简单总结一下模拟退火的大致流程,做一个初始解,外循环会控制温度参数T,外循环的每一个step包含一个内循环,内循环是遵循一些控制条件的局部搜索,局部搜索会逐个得到的解,可能是更优的解,也可能是更差的解。模拟退火的精髓之一,以一定几率...
Python
lessIsBetter
2022-06-23 14:06:23
6531
0
0
2022-06-23 14:06:23
999+
0
0
总条数:16
10
10
20
50
100
1
2
上滑加载中
https://www.baidu.com/s?ie=utf-8&f=3&rsv_bp=0&rsv_idx=1&tn=baidu&wd=sed%20%E6%9B%BF%E6%8D%A2%E5%AD%97%E7%AC%A6%E4%B8%B2&rsv_pq=c7db61a600035dc5&rsv_t=5e19yEsbV9N5fIvdlGRU
+ 关注