首页 > 2014年02月22日 > 全部分享
codeforces 388C Fox and Card Game
刚刚看到这个题感觉是博弈题;不过有感觉不像,应该是个贪心;于是就想贪心策略;举了一个例子:33 1 2 34 3 4 1 25 4 1 2 5 8如果他们两个每次都拿对自己最有利的那个的话,C的得分是14分;但是C作为第一个选手,他有更好的策略,只拿前一半,后一半给J,中间的再分;这样的话C的得分就...
分类:其他   时间:2014-02-22 22:12:24    收藏:0  评论:0  赞:0  阅读:333
Single Number II
Given an array of integers, every element appearsthreetimes except for one. Find that single one. 1 public class Solution { 2 public int singleNumber(...
分类:其他   时间:2014-02-22 22:11:14    收藏:0  评论:0  赞:0  阅读:387
Triangle
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given the fol...
分类:其他   时间:2014-02-22 22:08:51    收藏:0  评论:0  赞:0  阅读:432
第6章 JSP的内置对象
为了简化jsp应用程序开发,jsp2.0规范中定义了9种内置对象,在jsp不需要预先声明和创建就能直接使用。jsp内置对象有out、page、request、response、seesion、pageContext、config、exception和application对象 本章主要内容 1.内置...
分类:Web开发   时间:2014-02-22 22:07:35    收藏:0  评论:0  赞:0  阅读:408
黄金与指数的关联性研究的观点一标普-道-黄金20分钟延迟
gold and index - S&P - dow -gold 20 minutes delay by meetrice on TradingView.com
分类:其他   时间:2014-02-22 22:10:07    收藏:0  评论:0  赞:0  阅读:319
简明lua教程[转]
---------------list start------------------【LUA基本语法】【LUA常用函数】【技巧集】【API reference】【参考资料】---------------list end--------------------
分类:其他   时间:2014-02-22 22:06:19    收藏:0  评论:0  赞:0  阅读:574
Eclipse(Myeclipse)安装GoogleGWT
1,下载gpehttp://code.google.com/p/googleappengine/并安装.2,下载gwthttp://code.google.com/intl/zh-CN/webtoolkit/download.html(如果没有对应的版本看看下面这个连接http://code.goo...
分类:其他   时间:2014-02-22 22:05:03    收藏:0  评论:0  赞:0  阅读:401
Linked List Cycle II
1 public class Solution { 2 public ListNode detectCycle(ListNode head) { 3 if(head==null) return head; 4 ListNode fast = head; 5 ListNode slow = head;...
分类:其他   时间:2014-02-22 22:02:34    收藏:0  评论:0  赞:0  阅读:370
关于android下的冒烟测试
今天看了个关于android测试的视频,发现了一个叫冒烟测试的概念,又百度了一下,稍稍做一点笔记。 冒烟测试源自硬件行业,对一个硬件或者硬件组件改动后,直接给设备加电,看看设备会不会冒烟,没冒烟,就表示待测组件是通过了测试(视频上说是不断操作软件直到手机冒烟,这个解释感觉更有趣^_^),我个人理解,...
分类:移动平台   时间:2014-02-22 22:01:27    收藏:0  评论:0  赞:0  阅读:597
Longest Substring Without Repeating Characters
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters fo...
分类:其他   时间:2014-02-22 22:00:11    收藏:0  评论:0  赞:0  阅读:422
一步步学习ASP.NET MVC3 (13)——HTML辅助方法
请注明转载地址:http://www.cnblogs.com/arhat今天老魏是在十分郁闷,我的一个U盘丢了,心疼里面的资料啊,全部是老魏辛辛苦苦积攒的Linux资料,太心疼,到现在心情还不是很爽。没办法,丢了也就丢了。希望老魏能够从服务器中找到这些备份的资料吧。那么开始今天的章节,由于前两天比较...
分类:Web开发   时间:2014-02-22 21:58:55    收藏:0  评论:0  赞:0  阅读:583
PHP的ISAPI和FastCGI比较
1、CGI(通用网关接口/Common Gateway Interface)一般是可执行程序,例如EXE文件,和WEB服务器各自占据着不同的进程,而且一般一个CGI程序只能处理一个用户请求。这样,当用 户请求数量非常多时,会大量占用系统的资源,如内存、CPU时间等,造成效能低下。 2、ISAPI(I...
分类:Windows开发   时间:2014-02-22 21:57:45    收藏:0  评论:0  赞:0  阅读:562
linux下配置Apache基于加密的认证访问
1、首先要确认安装了 mod_ssl模块我的机器是centos是系统,执行下面命令yum install -y mod_ssl2、用openssl工具生成密钥,证书请求文件,证书在/usr/local/httpd目下,执行以下命令。2.1生成密钥openssl genrsa 1024 > serve...
分类:其他   时间:2014-02-22 21:56:38    收藏:0  评论:0  赞:0  阅读:471
利用CGLib实现动态代理实现Spring的AOP
当我们用Proxy 实现Spring的AOP的时候, 我们的代理类必须实现了委托类的接口才能实现。 而如果代理类没有实现委托类的接口怎么办? 那么我们就可以通过CGLib来实现package cn.gbx.aop; import java.lang.reflect.InvocationHandler...
分类:其他   时间:2014-02-22 21:55:26    收藏:0  评论:0  赞:0  阅读:376
通过给密码加salt增强安全性
虽然PHP提供了散列和加密函数、字符串函数,我们还是有必要采取额外的安全措施以确保用户的信息安全。给密码加salt,也就是在对密码进行散列计算时添加额外的字符串,是一种相当简单有效地增强安全性的方法。 salt是一个字符串,可以事先定义好,也可以随机产生。在对用户输入数据进行散列时,就是用它给输入数...
分类:其他   时间:2014-02-22 21:54:17    收藏:0  评论:0  赞:0  阅读:453
【贪心】【POJ-1992】Ride to School
DescriptionMany graduate students of Peking University are living in Wanliu Campus, which is 4.5 kilometers from the main campus – Yanyuan. Students i...
分类:其他   时间:2014-02-22 21:53:03    收藏:0  评论:0  赞:0  阅读:379
更新sdk下载失败
今天更新sdk,遇到了更新下载失败问题:Fetching https://dl-ssl.google.com/android/repository/addons_list-2.xmlFetched Add-ons List successfullyFetching URL: https://dl-s...
分类:其他   时间:2014-02-22 21:51:55    收藏:0  评论:0  赞:0  阅读:365
Linked List Cycle
Given a linked list, determine if it has a cycle in it. 1 public class Solution { 2 public boolean hasCycle(ListNode head) { 3 if(head==null) return f...
分类:其他   时间:2014-02-22 21:50:41    收藏:0  评论:0  赞:0  阅读:418
Container With Most Water
Givennnon-negative integersa1,a2, ...,an, where each represents a point at coordinate (i,ai).nvertical lines are drawn such that the two endpoints of ...
分类:其他   时间:2014-02-22 21:49:33    收藏:0  评论:0  赞:0  阅读:379
JZ2440开发笔记(9)——位置无关代码设计【转】
b MAIN 和 ldr pc,=MAIN 的区别(谈到代码位置无关性)看bootloader的时候经常看到这两种写法,不太明白区别,网上查了查。其实看了之后还是一头雾水?其中,2和3 似乎是一个东西,但结果是相反的。晕。//=====================================...
分类:其他   时间:2014-02-22 21:48:18    收藏:0  评论:0  赞:0  阅读:458
1105条   上一页 1 ... 3 4 5 6 7 ... 56 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!