码迷,mamicode.com
首页 >  
搜索关键字:invalid namespace    ( 44721个结果
C#:DataGridView控件操作
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows.Forms;namespace Common{ /// /// DataGrid...
分类:Windows程序   时间:2014-05-08 19:31:30    阅读次数:472
C#:列表视图操作类
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows.Forms;namespace Common{ /// /// 列表视图操作类 ...
分类:其他好文   时间:2014-05-08 19:30:25    阅读次数:337
HDU 3062
http://acm.hdu.edu.cn/showproblem.php?pid=30622sat判定性问题模板#include #include #include #include #include #include using namespace std ;struct node { i...
分类:其他好文   时间:2014-05-08 19:24:07    阅读次数:363
C#:ZedGraph画图控件(待补充)
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using ZedGraph;namespace TestZedGraphCo...
分类:其他好文   时间:2014-05-08 19:21:43    阅读次数:530
OpenJudge Trans
#include#include#include#include#include#include#include#include#include#include#includeusing namespace std;const int inf=(int)1E9,maxT=100+1,maxn=20,...
分类:其他好文   时间:2014-05-08 19:16:07    阅读次数:275
C#:TextBox控件操作类
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows.Forms;namespace Common{ /// /// TextBox控...
分类:其他好文   时间:2014-05-08 19:15:06    阅读次数:293
最长不下降序列解决算法
#include "stdafx.h"#include#include#includeusing namespace std;long long d[100000],a[100000];long long len,i,k,n;long long min(long long t){ long long...
分类:其他好文   时间:2014-05-08 14:05:19    阅读次数:261
C#:复选框操作类
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows.Forms;namespace Common{ /// /// 复选框操作类 ...
分类:其他好文   时间:2014-05-07 20:22:28    阅读次数:345
十一周 项目三 点类
#include #include using namespace std; class Point //定义坐标点类 { public: Point():x(0),y(0) {}; Point(double x0, double y0):x(x0),y(y0){}; void PrintPoint(); //输出点的信息 double getx() { ...
分类:其他好文   时间:2014-05-07 16:14:20    阅读次数:267
第七届省赛赛前交流赛部分题解
这是在省赛前热身赛出的题目,可能是题目中有用到博弈的思想,很多人都在做,而且在尝试暴力。但是没有人往dp的方向上想。 题意: 有一个长度为n的整数序列,A和B轮流取数,A先取,每次可以从左端或者右端取一个数,所有数都被取完时游戏结束,然后统计每个人取走的所有数字之和作为得分,两人的策略都是使自己的得分尽可能高,并且都足够聪明,求A的得分减去B的得分的结果。...
分类:其他好文   时间:2014-05-07 16:09:45    阅读次数:436
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!