首页 > 2014年02月09日 > 全部分享
uva10118 Free Candies(DP)
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=11&page=show_problem&problem=1059此题的状态即为4个栈的顶部元素的位置#include #includ...
分类:其他   时间:2014-02-09 22:44:40    收藏:0  评论:0  赞:0  阅读:523
深拷贝与浅拷贝
拷贝:对象一定有一个副本深拷:针对所有级别的类型创建独立的副本浅拷:针对本类型的实例的属性成员进行复制,对象中不包含引用类型成员(除字符串以外)没有浅拷与深拷之分案例:namespace 深拷贝与浅拷贝{ [Serializable] public class MyClass : ICloneabl...
分类:其他   时间:2014-02-09 22:43:00    收藏:0  评论:0  赞:0  阅读:410
JS和JSP之间值传递
JSP和JS之间值传递、变量交互
分类:Web开发   时间:2014-02-09 22:43:50    收藏:0  评论:0  赞:0  阅读:406
JSP 9 个内置对象
1、application — 应用对象 表示一个javax.servle.ServletContext 对象。 application 对象用于保存所有应用系统中的公有数据。服务器启动并且自动创建 application 对象以后,只要没有关闭服务器,application 对象将一直存在,所有用...
分类:Web开发   时间:2014-02-09 22:42:10    收藏:0  评论:0  赞:0  阅读:395
poj3259 Wormholes(spfa)
就是给出一些点边关系, 有虫洞的就是负值。 注意普通道路是双向边。。一开始这里建错图了之后处理用了spfa ,类似模板的一道题题目:WormholesTime Limit: 2000MSMemory Limit: 65536KTotal Submissions: 26848Accepted: 966...
分类:其他   时间:2014-02-09 22:40:30    收藏:0  评论:0  赞:0  阅读:422
PAT 1003
1003. Emergency (25) As an emergency rescue team leader of a city, you are given a special map of your country. The map shows several scattered cities...
分类:其他   时间:2014-02-09 22:39:40    收藏:0  评论:0  赞:0  阅读:449
<重构>一书读书笔记
1.差劲的系统是很难修改的。因为很难找到修改点。如果很难找到修改点,程序员就很有可能犯错,从而引入bug。2.如果你发现需要给程序添加一个特性,而代码结构使你无法很方便的达成目的,那就先重构那个程序,使特性的添加比较容易进行。然后再添加特性。3.重构步骤的本质:由于每次修改的幅度都很小,所以任何错误...
分类:其他   时间:2014-02-09 22:41:20    收藏:0  评论:0  赞:0  阅读:268
uva10626 Buying Coke(DP)
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=11&page=show_problem&problem=1567此题状态即为各种硬币个数,然后分类讨论即可。#include #in...
分类:其他   时间:2014-02-09 22:38:00    收藏:0  评论:0  赞:0  阅读:451
马老师 linux必备web服务入门及高级进阶
HTTP: HyperText Transfer Protocol 超文本传输协议超链接:Web:http/0.9:仅纯文本(超链接),ASCIIHTML: HyperText Mark Language 超文本标记语言Browser:客户端URI:Uniform Resource Indentif...
分类:Web开发   时间:2014-02-09 22:37:10    收藏:0  评论:0  赞:0  阅读:442
uva 607 Scheduling Lectures(DP)
很水的一道DP#include #include #include using namespace std;int a[1010],l,c,n;int dp[1010],cost[1010];int f(int x){ if(x==0) return 0; else if(x=1;j--){ sum...
分类:其他   时间:2014-02-09 22:36:20    收藏:0  评论:0  赞:0  阅读:355
uva10285 Longest Run on a Snowboard(DP)
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=11&page=show_problem&problem=1226#include #include #include using n...
分类:其他   时间:2014-02-09 22:35:30    收藏:0  评论:0  赞:0  阅读:442
uva590 Always on the run(DP)
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=11&page=show_problem&problem=531#include #include #define ll long l...
分类:其他   时间:2014-02-09 22:31:20    收藏:0  评论:0  赞:0  阅读:333
Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:]
今天遇到了Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:]这个错误,一直也没有百度,不料想却弄了一个下午,唉,早知道就百度一下了,呵呵。遇到这个问题的原因是tableView的这个方法返回了空的值,所...
分类:其他   时间:2014-02-09 22:28:50    收藏:0  评论:0  赞:0  阅读:412
uva116 Unidirectional TSP(DP)
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=11&page=show_problem&problem=52水题#include #include #include #includ...
分类:其他   时间:2014-02-09 22:29:40    收藏:0  评论:0  赞:0  阅读:365
JSP代码执行顺序
JSP =JAVA + HTML,即HTML代码中嵌入Java代码片段。 运行时.jsp文件先编译成servlet(即java文件),再编译成.class文件。 JSP中 JAVA代码在服务器执行,HTML和JS代码在客户端(浏览器)执行。执行时先执行服务器代码,再执行客户端代码。 案例:结果为:j...
分类:Web开发   时间:2014-02-09 22:28:00    收藏:0  评论:0  赞:0  阅读:480
整理收藏一份PHP高级工程师的笔试题
整理了一份PHP高级工程师的笔试题,问题很全面。嗯,基本上这些题都答得不错,那么你应该可以胜任大部分互联网企业的PHP职位了。下面直接上题。1. 基本知识点HTTP协议中几个状态码的含义:503,500,401,200,301,302。。。include,require,include_once,r...
分类:Web开发   时间:2014-02-09 22:27:10    收藏:0  评论:0  赞:0  阅读:617
uva702 The Vindictive Coach(DP)
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=11&page=show_problem&problem=643#include #include #define ll long l...
分类:其他   时间:2014-02-09 22:25:30    收藏:0  评论:0  赞:0  阅读:397
uva10912 Simple Minded Hashing(DP)
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=11&page=show_problem&problem=1853#include #include #include using n...
分类:其他   时间:2014-02-09 22:26:20    收藏:0  评论:0  赞:0  阅读:381
app被Rejected 的各种原因翻译
1. Terms and conditions(法律与条款)1.1As a developer of applications for the App Store you are bound by the terms of theProgram License Agreement(PLA), Hum...
分类:移动平台   时间:2014-02-09 22:24:40    收藏:0  评论:0  赞:0  阅读:715
14年生日,教大家制作相册视频
希望能一年一篇发到老,当然对象不是程序猿,主要是QQ好友……去年是教大家PS的一些赚钱技巧,今年没什么想法,就教大家制作相册视频吧,我在想着那明年教什么?简单的多媒体基本都说了,莫非教虚拟现实?那又脱离群众了,但又何妨,只是找个方式让自己知道逝去的日子。 这个是大一时制作的,可以看看效果先:http...
分类:其他   时间:2014-02-09 22:23:50    收藏:0  评论:0  赞:0  阅读:447
1212条   上一页 1 ... 3 4 5 6 7 ... 61 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!