码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
2015长春 HDU 5531 Rebuild
题意:n个顶点组成的多边形能否形成正多边形? 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 #include 10 using n...
分类:其他好文   时间:2015-11-14 16:30:00    阅读次数:312
混合运算(控制台)
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Text.RegularExpressions;namespace ConsoleApplication2{ ...
分类:其他好文   时间:2015-11-14 16:22:41    阅读次数:193
高精度模板
1 #include 2 using namespace std; 3 const int MAXN = 10010; 4 5 struct bign 6 { 7 int len,s[MAXN]; 8 bign() 9 { ...
分类:其他好文   时间:2015-11-14 12:19:46    阅读次数:215
c# params
每个C#函数都允许有个参数带params关键字,在调用的时候可以不给他传值,也可以给他传值,还可以给他传多个值,例子如下:using System;using System.Collections.Generic;using System.Text;namespace ConsoleApplicat...
分类:Windows程序   时间:2015-11-14 12:19:00    阅读次数:147
刷过一题之快速排序
试题描述输入两个正整数N、K,以及N个整数Ai,求第K小数。输入第一行为两个正整数N、K。第二行为N个正整数Ai。输出输出第K小数。输入示例5412335输出示例3其他说明1#define rep(s,t) for(int i=s;i<=t;i++)//自定义读入数据方法 using namespa...
分类:编程语言   时间:2015-11-14 11:06:39    阅读次数:251
Pig
http://www.codelast.com/?p=4249http://www.klshu.com/656.htmlo_data = LOAD 'hdfs://hadoop/user/xuting/analy/userDevtmp' using PigStorage('`') AS (userI...
分类:其他好文   时间:2015-11-14 11:05:46    阅读次数:291
抛出异常
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ class Program { stat...
分类:其他好文   时间:2015-11-14 11:04:32    阅读次数:294
Leetcode Decode Ways
A message containing letters fromA-Zis being encoded to numbers using the following mapping:'A' -> 1'B' -> 2...'Z' -> 26Given an encoded message conta...
分类:其他好文   时间:2015-11-14 06:25:36    阅读次数:288
C#中八皇后问题的递归解法——N皇后
百度测试部2015年10月份的面试题之——八皇后。八皇后问题的介绍在此。以下是用递归思想实现八皇后-N皇后。代码如下:using System;using System.Collections.Generic;namespace QueensSolution{ class Program ...
分类:Windows程序   时间:2015-11-14 06:15:31    阅读次数:345
zoj 1760 查找
http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=760撸了个二分查找 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 int bs(i....
分类:其他好文   时间:2015-11-14 06:14:59    阅读次数:252
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!