码迷,mamicode.com
首页 >  
搜索关键字:using password: yes    ( 53562个结果
luogu P4542 [ZJOI2011]营救皮卡丘 网络流 拆点
#include<cstdio> #include<cstring> #include<algorithm> #include<queue> #include<iostream> using namespace std; const int maxn=1e6+10; const int inf=0x ...
分类:其他好文   时间:2020-06-24 12:05:43    阅读次数:37
225. Implement Stack using Queues
/** * Initialize your data structure here. */ var MyStack = function() { this.inQueue = []; this.outQueue = []; }; /** * Push element x onto stack. * ...
分类:其他好文   时间:2020-06-24 12:04:42    阅读次数:54
232. Implement Queue using Stacks
/** * Initialize your data structure here. */ var MyQueue = function() { this.stack1 = []; this.stack2 = []; }; /** * Push element x to the back of qu ...
分类:其他好文   时间:2020-06-24 11:45:42    阅读次数:59
GB/T 38878-2020 柔性直流输电工程系统试验
点击下载该标准 标准编号:GB/T 38878-2020标准名称:柔性直流输电工程系统试验英文名称:System tests for the projects of high-voltage direct current (HVDC) transmission power using voltage ...
分类:其他好文   时间:2020-06-24 11:43:52    阅读次数:214
C#基础委托之重调方法
using System; namespace ConsoleTese { class Program { public delegate int dele(int a, int b); static void Main(string[] args) { ProductFactory product ...
分类:Windows程序   时间:2020-06-24 00:49:06    阅读次数:89
C#基础难委托之模板方法
using System; namespace ConsoleTese { class Program { public delegate int dele(int a, int b); static void Main(string[] args) { ProductFactory product ...
分类:Windows程序   时间:2020-06-23 22:56:33    阅读次数:119
[啃书] 预告篇 - algorithm下的函数
max()/min()/abs()函数 swap()函数 reverse()函数 next_permutation()函数 fill()函数 sort()函数 头文件需要 #include<algorithm> using namespace std 使用方法 sort(首元素地址(必填), 尾元素 ...
分类:其他好文   时间:2020-06-23 21:43:03    阅读次数:58
Dijkstra堆优化
#include<iostream> #include<cstdio> #include<queue> using namespace std; int dis[200001],head[200001]; int n,m,a,b,c,s,cnt; bool vis[200001]; struct e ...
分类:其他好文   时间:2020-06-23 21:35:40    阅读次数:59
类加载时机说明
类加载时机说明 类的生命周期 类从被加载到虚拟机内存开始,到卸载出内存位置,它的整个生命周期包含7个阶段:加载(Loading)、验证(Verification)、准备(Preparation)、解析(Resolution)、初始化(Initialization)、使用(Using)、卸载(Unlo ...
分类:其他好文   时间:2020-06-23 21:24:08    阅读次数:58
Codeforce 318A - Even Odds(数学水题)
Being a nonconformist, Volodya is displeased with the current state of things, particularly with the order of natural numbers (natural number is posit ...
分类:其他好文   时间:2020-06-23 21:22:33    阅读次数:63
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!