码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
BZOJ 1606 Hay For Sale 购买干草
#include<iostream>#include<cstdio>#include<cstring>using namespace std;int v,n,r[5050],dp[50050];int main(){ scanf("%d%d",&v,&n); for (int i=1;i<=n;i+
分类:其他好文   时间:2016-03-15 00:19:49    阅读次数:110
C++之虚函数
#include using namespace std ; class AA { public: int a ; //虚函数 virtual void say_hello(void) { cout << "this is your parent " << endl ; } }; class BB : public AA { public: ...
分类:编程语言   时间:2016-03-14 19:00:42    阅读次数:212
MyBatis异常-Property 'configLocation' not specified, using default MyBatis Configuration
配置文件如下:base-context.xml文件如下: <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:c...
分类:其他好文   时间:2016-03-14 14:06:02    阅读次数:3293
[RxJS] Sharing Streams with Share
A stream will run with each new subscription added to it. This lesson shows the benefits of using share so that the same stream can be shared across m
分类:Web程序   时间:2016-03-14 07:07:30    阅读次数:229
person
using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Runtime.CompilerServices; using System.Te
分类:其他好文   时间:2016-03-13 23:55:22    阅读次数:190
作业保存1
#include<iostream>#include<cstdlib>#include<cstdio>#include<time.h>#include<windows.h>using namespace std;const int initial_lize=10000;const int addin
分类:其他好文   时间:2016-03-13 22:17:22    阅读次数:306
POJ 3974 Palindrome
MANACHER模板题。 #include<iostream>#include<cstdio>#include<cstring>using namespace std;char s[1000500],now[2000500];int l,num[2000500];void make_table(){
分类:其他好文   时间:2016-03-13 19:44:20    阅读次数:144
C#第十四节课
函数的调用 using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace hanshu{ class Program
分类:Windows程序   时间:2016-03-13 16:16:02    阅读次数:218
HDU ACM 1025 Constructing Roads In JGShining&#39;s Kingdom-&gt;二分求解LIS+O(NlogN)
#include<iostream> using namespace std; //BFS+优先队列(打印路径) #define N 500005 int c[N]; int dp[N]; //dp[i]保存的是长度为i的最长不降子序列的最小尾元素 int BS(int n,int x) //二分查
分类:其他好文   时间:2016-03-13 16:13:01    阅读次数:189
Eclipse Plugin Installation and Windows User Access Control
I make Eclipse Plugins and I sell them to developers using Eclipse. Most of the visitors to my web site are not Eclipse experts. One of my key challen
分类:数据库   时间:2016-03-13 16:05:23    阅读次数:238
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!