码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
3维计算几何模板
#include <iostream> #include <cmath> #include <vector> #include <string.h> #include <stdlib.h> #include <algorithm> using namespace std; #define MAX_N
分类:其他好文   时间:2016-01-29 03:26:21    阅读次数:238
hdu1174(3维射线与圆是否相交)
简单的题意,要注意z2 = h2*0.9-r2 #include <iostream> #include <cmath> #include <vector> #include <string.h> #include <stdlib.h> #include <algorithm> using name
分类:其他好文   时间:2016-01-29 03:17:58    阅读次数:210
HDU 1258 Sum It Up(DFS)
题目链接 Problem Description Given a specified total t and a list of n integers, find all distinct sums using numbers from the list that add up to t. For
分类:其他好文   时间:2016-01-29 00:05:30    阅读次数:232
C# walls
在学习C#的阶段中,我们一点一点的往前爬, 此代码需要添加selenium ,和 获取 引用。 using Ivony.Html.Parser; using Ivony.Html; using OpenQA.Selenium; using OpenQA.Selenium.Firefox; using
分类:Windows程序   时间:2016-01-28 21:09:49    阅读次数:249
mysql使用索引扫描来做排序
mysql有两种方式可以生成有序的结果,通过排序操作或者按照索引顺序扫描,如果explain的type列的值为index,则说明mysql使用了索引扫描来做排序(不要和extra列的Using index搞混了,那个是使用了覆盖索引查询)。扫描索引本身是很快的,因为只需要从一条索引记录移动到紧接着的
分类:数据库   时间:2016-01-28 19:09:30    阅读次数:279
mvc通过ActionFilterAttribute做登录检查
1.0 创建Attribute using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace LSUnion.Site.WebHelper { [AttributeUsag
分类:Web程序   时间:2016-01-28 17:12:22    阅读次数:144
WCF Get / Post请求
服务端 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Runtime.Serialization; 5 using System.ServiceModel; 6 usin
分类:其他好文   时间:2016-01-28 16:54:58    阅读次数:226
MysqL的root用户不允许远程连接
异常:java.sql.SQLException: Access denied for user 'root'@'RJB-Z' (using passwrod)。 String url ="jdbc:mysql://192.168.1.169:3306/test“; 密码没错的,在命令行窗口都能登进
分类:数据库   时间:2016-01-28 16:54:27    阅读次数:198
linux下安装mysql默认root无法登陆问题
问题: [root@localhost mysql]# mysql -u root -pEnter password: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) 解决方法:方法
分类:数据库   时间:2016-01-28 16:52:28    阅读次数:248
12:求平均年龄
#include<iostream> #include<cstdio> using namespace std; int n; #define rep(i,j,k) for(int i=j;i<=k;i++) int main() { int sum=0; cin>>n; int tmp; rep(
分类:其他好文   时间:2016-01-28 13:56:14    阅读次数:127
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!