码迷,mamicode.com
首页 >  
搜索关键字:opened    ( 2253个结果
#404 (div2)Anton and Permutation (分块处理)
Anton likes permutations, especially he likes to permute their elements. Note that a permutation of n elements is a sequence of numbers {a1,?a2,?...,? ...
分类:其他好文   时间:2017-04-03 18:59:31    阅读次数:200
Vector源码解析
概要 学完ArrayList和LinkedList之后,我们接着学习Vector。学习方式还是和之前一样,先对Vector有个整体认识,然后再学习它的源码;最后再通过实例来学会使用它。第1部分 Vector介绍第2部分 Vector数据结构第3部分 Vector源码解析(基于JDK1.6.0_45) ...
分类:其他好文   时间:2017-04-03 16:59:16    阅读次数:254
禁止拷贝
1 class Noncopyable{//主要作用在于禁止基类对象的拷贝; 2 public: 3 Noncopyable(){} 4 ~Noncopyable(){} 5 Noncopyable(const Noncopyable&) = delete; 6 const Noncopyable ...
分类:其他好文   时间:2017-04-03 12:08:49    阅读次数:166
【算法系列学习】状压dp [kuangbin带你飞]专题十二 基础DP1 D - Doing Homework
https://vjudge.net/contest/68966#problem/D http://blog.csdn.net/u010489389/article/details/19218795 1 #include<iostream> 2 #include<cstdio> 3 #include ...
分类:编程语言   时间:2017-04-02 23:47:48    阅读次数:319
【bzoj1692】[Usaco2007 Dec]队列变换
Description FJ打算带他的N(1 <= N <= 30,000)头奶牛去参加一年一度的“全美农场主大奖赛”。在这场比赛中,每个参赛者都必须让他的奶牛排成一列,然后领她们从裁判席前依次走过。 今年,竞赛委员会在接受队伍报名时,采用了一种新的登记规则:他们把所有队伍中奶牛名字的首字母取出,按 ...
分类:其他好文   时间:2017-04-02 22:05:39    阅读次数:241
接口 Interface
interface 关键字 声明接口 接口中的成员默认都是public 能力不一样的时候适合用接口 using System; using System.Collections; using System.Collections.Generic; namespace Dome { class dom ...
分类:其他好文   时间:2017-04-02 21:44:16    阅读次数:165
山东省第一届acm程序设计竞赛题解
缺c 计算几何没看 f一个模拟,不想写,难度不大,J,因为时间挺早的,题目都比较简单,没什么难度,组队出个8题还是轻松的 A:水题 1 #include<bits/stdc++.h> 2 using namespace std; 3 const int maxn=1e3+5; 4 string s[ ...
分类:其他好文   时间:2017-04-01 20:00:19    阅读次数:285
Cache缓存
{ /// <summary> /// Cache manager interface /// </summary> public interface ICacheManager { /// <summary> /// Gets or sets the value associated with t ...
分类:系统相关   时间:2017-04-01 15:10:39    阅读次数:293
两个有序链表的合并
笔记和代码的思路来源: 好大学慕课浙江大学陈越、何钦铭的《数据结构》 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 typedef int ElementType; 5 typedef struct Node *PtrToNode; 6 struct ...
分类:其他好文   时间:2017-03-31 21:44:51    阅读次数:163
codeforces - 789C 【分类+简单递推】
1 #include <bits/stdc++.h> 2 #define rep(i,a,b) for(int i = a;i <= b;++ i) 3 #define per(i,a,b) for(int i = a;i >= b;-- i) 4 #define mem(a,b) memset(( ...
分类:其他好文   时间:2017-03-31 21:23:23    阅读次数:368
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!