最新文章
-
Acwing 4086 分糖果
原题链接:Acwing 4086 分糖果 #include using namespace std; int main() { std::ios::sync_with_stdio(false); int n,l,r; cin>>n>>l>>r; …… -
-
python list 列表
python list 列表 列表是一个可变的链表结构体,可变代表着不可hash CRUD(创建,读,更新,删除) 和元组一样,多了一些特殊的方法 1,创建 2,读 (索引,切…… -
慢慢攻略HashMap(4)——扩容方法篇
********本篇主要介绍了HashMap源码中resize方法部分******** 一、resize()源码及详细分析二、问题分析与核心代码详解 一、resize()源码及详细分析 final Nod…… -
计算机网络2020秋–第三次测验
一、多选题 (题数:3,共 15.0 分) 1 下列MAC控制方法不会产生冲突的有 (5.0分) 5.0 分 A、 CSMA B、 Token bus C、 CSMA/CD D、 CDMA 正确答案: BD 我的…… -
Windows 一键锁定+关屏
介绍 最近有一个需求:需要在锁定后关闭屏幕。 环境 Windows 10 21H2 AutoHotKey v1.1.33.10 方法 方法很简单,只需要向 Windows 发送一条关闭显示器的消息…… -
-
-
AcWing 1459 奶牛体操 题解(春季每日一题)
原题 看见这个数据范围基本就可以为所欲为了 #include using namespace std; const int N = 25; int n, k; int ans; int g[N][N]; int main() { cin>>k>>n; …… -
C++ 两个链表的交集
#include #include typedef int ElemType; typedef struct node { ElemType data; struct node* next; }LNode, * LinkList; void CreateList(LinkList……
友情链接

