using System; using System.Collections.Generic; using System.Threading; namespace 生产者消费者 { class Program { static int r; static Queue<int> q = new Que ...
分类:
其他好文 时间:
2021-06-16 18:05:33
阅读次数:
0
#include <iostream> #include <cstdlib> using namespace std; int func1(),func2(),func3(); int main(int argc,char * argv[]) { _onexit(func2); //函数注册时入栈, ...
分类:
编程语言 时间:
2021-06-15 18:03:29
阅读次数:
0
link #思路: 经典套路,通过dfs序将树上修改转化为线性修改,这样问题就转化为了单点修改,区间查询,用树状数组维护。 类似题 #代码: #pragma GCC optimize(2) #include<bits/stdc++.h> using namespace std; typedef lo ...
分类:
移动开发 时间:
2021-06-15 17:41:05
阅读次数:
0
###重置数列 AcWing 3661 https://www.acwing.com/problem/content/3664/ 纯暴力1-100 #include <iostream> #include <cstring> #include <algorithm> using namespace ...
分类:
其他好文 时间:
2021-06-13 10:47:34
阅读次数:
0
解析 这道题我觉得恶心的地方就是要求一整条边的边权的异或给搞出来, 注意运算符不要用错了。 Code #include <bits/stdc++.h> #define N 100005 using namespace std; struct node { int x, to, nxt; }hd[N ...
分类:
其他好文 时间:
2021-06-13 10:42:08
阅读次数:
0
###TP5.1 下载安装Redis 配置redis信息 <?php namespace app\common\redis; class RedisHandler { public $provider; //创建实例子 private static $_instance = null; //创建re ...
分类:
其他好文 时间:
2021-06-13 10:19:59
阅读次数:
0
描述: 根据包名,在指定空间中创建对象 输入描述:namespace({a: {test: 1, b: 2}}, 'a.b.c.d') 输出描述:{a: {test: 1, b: {c: {d: {}}}}} 1 function namespace(oNamespace, sPackage) { ...
分类:
其他好文 时间:
2021-06-13 10:11:52
阅读次数:
0
字符串加法和字符串与单字符乘法见 "简单常用的一些函数,个人的函数库" 的13和14 cpp include include include using namespace std; string addStrings(strin ...
分类:
其他好文 时间:
2021-06-13 09:53:38
阅读次数:
0
#include <iostream> using namespace std; double* aaa() { double tmp[3] = { 1.01,2.02,3.03 }; double* tmp1 = new double[3]; for (size_t i = 0; i < 3; i ...
分类:
编程语言 时间:
2021-06-13 09:52:53
阅读次数:
0
这次是事件聚合器的应用。 事件聚合器应用第一步:定义一个事件聚合器,应该是一个可访问的公共区域,例14为它做了一个core的项目。代码很简单: using Prism.Events; namespace UsingEventAggregator.Core { public class Message ...
分类:
其他好文 时间:
2021-06-13 09:52:36
阅读次数:
0