码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
API 读写cookie的方法
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Linq; using System.Net.Http; ...
分类:Windows程序   时间:2021-06-17 16:27:43    阅读次数:0
生产者消费者demo
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
TcpIp
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Net.Sockets; using Sy ...
分类:其他好文   时间:2021-06-16 18:02:41    阅读次数:0
C/C++中Main之后执行的函数_艾孜尔江撰
#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
高级数据结构第六章E . 苹果树 (dfs+树状数组)
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
[Trie树]C. 【例题3】最长异或路径
解析 这道题我觉得恶心的地方就是要求一整条边的边权的异或给搞出来, 注意运算符不要用错了。 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
二维 ST 表
#include <cmath> #include <queue> #include <vector> #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> #define ZYC using #d ...
分类:其他好文   时间:2021-06-13 09:59:25    阅读次数: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
53562条   上一页 1 ... 4 5 6 7 8 ... 5357 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!