码迷,mamicode.com
首页 > 2014年08月02日 > 全部分享
Nearest Common Ancestors·POJ1330
传送门:http://poj.org/problem?id=1330Nearest Common AncestorsTime Limit: 1000MSMemory Limit: 10000KDescriptionA rooted tree is a well-known data structur...
分类:其他好文   时间:2014-08-02 12:46:23    阅读次数:356
Java语言中extend和implement的区别
Java语言并不支持多重继承,而只能继承一个类,不过我们可以使用implements来实现多个接口。 extends继承的父类:不能声明为final或者定义为abstract; implements实现接口interface,用逗号分开就好; 如:class A extends B implemen...
分类:编程语言   时间:2014-08-02 12:45:53    阅读次数:482
sp_executesql 两种写法
写法1:AlTER PROCEDURE TryAgain@ReturnValue int output ASdeclare @aa nvarchar(1000), @ForumID int, @count int, @TotalRecords intB...
分类:数据库   时间:2014-08-02 12:45:33    阅读次数:285
*绝对值排序
Problem Description输入n(n#includeint main(){ int n,i,j,flag,temp,a[100]; while(scanf("%d",&n)!=EOF&&n!=0) { for(i=0;i<n;i++) scanf...
分类:其他好文   时间:2014-08-02 12:45:23    阅读次数:170
WSAStartup函数
函数WSAStartup一、WSAStartup函数 int WSAStartup ( WORD wVersionRequested, LPWSADATA lpWSAData ); 使用Socket的程序在使用Socket之前必须调用WSAStartup函数。该函数的第一个参数指明程序请求使...
分类:其他好文   时间:2014-08-02 12:45:03    阅读次数:163
nginx日志分割小脚本
nginx的日志一直是写在一个文件上面,运行久了之后文件会非常大,因此我们有必要对nginx的日志进行分割:1234567891011#! /bin/bashACCESS_LOG=/data/nginx/www.logERROR_LOG=/data/nginx/error.logYESTERDAY=...
分类:其他好文   时间:2014-08-02 12:44:53    阅读次数:237
Post方式调用wcf服务
我们平常在PC端调用WCF服务,只要知道WCF服务的地址,客户端直接添加引用服务就可以使用了,殊不知还有其他方式,其实,我们也可以通过HTTP POST的方式调用WCF服务,这样就不用添加引用了,在手机移动端开发后台服务,都是通过Post的形式调用WCF服务,当然,这种方式在PC也可以使用。 我.....
分类:其他好文   时间:2014-08-02 12:44:43    阅读次数:301
asp.net ajax+ashx局部验证
优化用户体检功能前台页面: 欢迎注册邮 箱:
分类:Web程序   时间:2014-08-02 12:44:33    阅读次数:213
poj3267(The Cow Lexicon)
题目地址:The Cow Lexicon题目大意: 奶牛有自己的识别单词的语言,它有自己的字典序列,如果给一串字符不符合奶牛的字典里的单词,奶牛就无法识别,你的任务就是找出给的字符串中包含给出奶牛字典的单词,至少从主串里删除几个字符,使主串只包含奶牛字典里的单词,不包含多于的字符。解题思路: ...
分类:其他好文   时间:2014-08-02 12:44:13    阅读次数:345
CSU-ACM暑假集训基础组七夕专场
?Problem A Codeforces 20C 最短路(dij,spfa)?题意:给出一张n个点m条边的无向图(2?≤?n?≤?105,?0?≤?m?≤?105),输出从1到n的任意一条最短路径。?解法:dijkstra或者spfa,用pre数组记录到达每个点最短距离的前驱结点。?注意:路径的长...
分类:其他好文   时间:2014-08-02 12:44:03    阅读次数:360
用python处理数学问题
>>> import math #导入数学模块>>> math.log(8,2) #计算以2为底 8的对数3.0>>> math.log(100,10) #计算以10 为底,100的对数2.0>>> math.log10(100) #专门有一个方法来计算以10为底的对数2.0>>> math.log...
分类:编程语言   时间:2014-08-02 12:43:53    阅读次数:363
Codeforces Round #259 (Div. 2) C - Little Pony and Expected Maximum
题目链接题意:分析: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #define LL long long 9 using namespace std;10 11 int ...
分类:其他好文   时间:2014-08-02 12:43:43    阅读次数:217
java基础知识回顾之javaIO类--File类应用:递归深度遍历文件
代码如下:package com.lp.ecjtu.File.FileDeepList;import java.io.File;public class FileDeepList { /** * @param args */ public static void main...
分类:编程语言   时间:2014-08-02 12:43:33    阅读次数:173
noip2010提高组题解
第一题:机器翻译模拟可以用STL里的vector或list实现插入、删除、查找操作。第二题:乌龟棋动态规划用 f(i, j, k, t) 表示分别用了i张卡片1、j张卡片2、k张卡片3、t张卡片4能得到的最大分数,则f(i, j, k, t) = max{ f(i-1, j, k, t), f(i,...
分类:其他好文   时间:2014-08-02 12:43:13    阅读次数:188
Lesson 37-38 Do you want to be a millionaire?
一 Words 1 perpetuate 保持,使永存 eg. Schood tends to perpetuate the myth that boys are better at sport than girls.学校往往会助长男孩比女孩体育强这一错误观念的延续 2 in general 通常 ...
分类:其他好文   时间:2014-08-02 12:43:03    阅读次数:228
POJ 3252 Round Numbers 数位DP
注意只有高位放了1之后才能开始统计#include #include #include #include #include #include #include #include #include #include #include #include #include using namespace ...
分类:其他好文   时间:2014-08-02 12:42:53    阅读次数:200
块级元素内联并列显示
inline-block标签1标签2标签3a标签本来就是内联 这样写,他出来效果就是--------标签1标签2标签3但如果你想要定义宽度,不加块状是起不来作用的,都是单单加块状(display:block),他又换行了,所以这时加display:inline-block 就起到很大作用,内联块状....
分类:其他好文   时间:2014-08-02 12:42:43    阅读次数:160
1204条   上一页 1 ... 43 44 45 46 47 48 49 ... 71 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!