上一页 1 2 3 4 5 6 7 8 ··· 27 下一页
摘要: #include<iostream> #include<cstring> using namespace std; const int N = 1010; int n, m; int dp[N][N]; int v[N], w[N]; int main(){ cin >> n >> m; for ( 阅读全文
posted @ 2022-12-10 22:07 ethon-wang 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 原理+手算 【矩阵连乘应用3】 https://www.bilibili.com/video/BV1XY4y1w7EN/?share_source=copy_web&vd_source=265987ccd804703830248514dc36023b 阅读全文
posted @ 2022-12-09 17:36 ethon-wang 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 参考 https://blog.shipengx.com/archives/5ac252d6.html https://blog.csdn.net/qq_29762941/article/details/80973027 友元重载 https://blog.csdn.net/KingCat666/a 阅读全文
posted @ 2022-12-08 16:34 ethon-wang 阅读(11) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/Stephen-Qin/p/12698910.html 阅读全文
posted @ 2022-12-08 14:54 ethon-wang 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 以这些类为例: class B { /*...*/ }; class D_priv : private B { /*...*/ }; class D_prot : protected B { /*...*/ }; class D_publ : public B { /*...*/ }; class 阅读全文
posted @ 2022-12-07 15:36 ethon-wang 阅读(17) 评论(0) 推荐(0) 编辑
摘要: night eye 能做到页内图片渲染,视频不受影响,至于透明图片黑字应该在黑暗模式是没救了 阅读全文
posted @ 2022-12-07 15:18 ethon-wang 阅读(15) 评论(1) 推荐(0) 编辑
摘要: https://blog.csdn.net/dajiyi1998?type=blog id:yan_feifei_1993 阅读全文
posted @ 2022-12-03 16:31 ethon-wang 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 参考 求无向图的连通分量或有向图的强连通分量—tarjan()ccf高速公路 23计算机考研—强连通分量的个数怎么求? 概念 强连通图 (Strongly Connected Graph)是指一个有向图(Directed Graph)中任意两点v1、v2间存在v1到v2的路径(path)及v2到v1 阅读全文
posted @ 2022-11-09 17:48 ethon-wang 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 如何查看某个特定端口的占用情况,比如 8080 netstat -ano|findstr "8080" 如何杀死一个进程 在查看某个端口被占用的情况后,想要释放这个端口,就要杀死占用端口的进程,进行如下操作 taskkill /f /pid "4707" 阅读全文
posted @ 2022-11-08 08:38 ethon-wang 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 网络虚拟化技术(二): TUN/TAP MACVLAN MACVTAP 阅读全文
posted @ 2022-11-07 21:19 ethon-wang 阅读(11) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 27 下一页