上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 如何实现memcpy? 如果从头实现memcpy,那么遇见src<dst的时候,并且有重叠的时候就嘎了。 #include <bits/stdc++.h> using namespace std; using LL = long long; const int N = 1e5 + 5; const 阅读全文
posted @ 2023-04-20 10:33 John_Ran 阅读(15) 评论(0) 推荐(0) 编辑
摘要: c++ vector的内存优化方法。 a. 背景知识:vector的内存空间只能增大,不能减小。并且大小是2的幂次,数据连续排放。如果不够了会重新开一片连续的内存,将原来的拷贝过去。 b. 所有的内存空间只在析构的时候才会被释放。用swap函数是可以做到释放内存的。 c. vector采用的技术是预 阅读全文
posted @ 2023-04-18 21:16 John_Ran 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 操作系统的中断和异常有什么区别? 中断是外部事件触发的,硬件设备发出的异步信号,用于向操作系统请求服务。中断事件发生时,会停止当前程序的运行,而转向中断处理程序的执行。在中断处理程序执行完成之后再回到原来的进程执行。 异常是cpu执行指令的时候遇到的错误和意外情况,是cpu内部的一种机制,所以异常是 阅读全文
posted @ 2023-04-17 21:05 John_Ran 阅读(28) 评论(0) 推荐(0) 编辑
摘要: Dijkstra算法,堆优化版本复杂度是mlog(m)。适合于没有负权的图。 #include <bits/stdc++.h> using namespace std; using LL = long long; const int N = 1e5 + 5; const int INF = 0x3f 阅读全文
posted @ 2023-04-17 11:33 John_Ran 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 一、01背包 for(int i=V;i>=c[i];--i){ dp[i]=max(dp[i], dp[i-c[i]]+w[i]) } hdu3466。这个题要考虑dp的无后效性质,简单来说,就是dp与物品排布有关的时候,我们应该选择最优的那一个。如果单独选择 i,j都没有问题的时候。如果先选i再 阅读全文
posted @ 2023-04-16 16:17 John_Ran 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 一、题意:找到第k(k上限1e12)大的,不包括4并且能被7整除的数。 题解:二分+数位dp。 #include <iostream> #include <cstring> #include <algorithm> using namespace std; typedef long long LL; 阅读全文
posted @ 2023-04-16 12:24 John_Ran 阅读(71) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> using namespace std; using LL = long long; #define lson (nd<<1) #define rson (nd<<1|1) #define mid (l+r>>1) const int N = 1e5 阅读全文
posted @ 2023-04-12 18:26 John_Ran 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 代码 #include <iostream> #include <thread> #include <mutex> #include <condition_variable> using namespace std; mutex mtx; condition_variable cv; bool fl 阅读全文
posted @ 2023-03-18 22:58 John_Ran 阅读(26) 评论(0) 推荐(0) 编辑
摘要: typedef long long LL; constexpr inline int lg2(LL x) { return sizeof(LL) * 8 - 1 - __builtin_clzll(x); } template<typename T, size_t N, size_t K> stru 阅读全文
posted @ 2022-10-30 12:34 John_Ran 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 这是一篇研究聚类的文章。对于聚类的点来说,它可能同时具有一些属性,包括数值型的(大小和差值是有具体意义的),bool(True/False)类型的,还有类别类型的(一个数字代表一个类别,大小无意义)。对于后两种类型的属性,直接算距离就不合理。所以作者就开发了一个基于Hierachical的聚类算法, 阅读全文
posted @ 2021-10-19 23:32 John_Ran 阅读(192) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页