码迷,mamicode.com
首页 > 其他好文
hdu 1241Oil Deposits(BFS)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1241Oil DepositsTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Su...
分类:其他好文   时间:2014-12-03 13:53:33    阅读次数:221
Linked List Cycle
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?/** * Definition for singly-linked list. *...
分类:其他好文   时间:2014-12-03 13:54:01    阅读次数:152
cPanel下载及安装信息 /usr/local/cpanel/bin/adduser-->realadduser
cPanel下载及安装信息 2011年03月31日发布在 编程开发留下评论说到cPanel,懂的人都知道玩意得研究研究。ISO安装 http://layer2.cpanel.net/CentOS-5.4-i386-cPanel.iso脚本安装 wget http://httpupdate.cpan....
分类:其他好文   时间:2014-12-03 13:53:01    阅读次数:252
ZendFramework2 文件结构
Application |__ config // 配置文件目录 |__ language // 语言包目录 |__ src |__ Application |__ Contr...
分类:其他好文   时间:2014-12-03 13:50:39    阅读次数:185
T检验
http://wenku.baidu.com/link?url=M5Bwsreyj8-CbKUldtuIcJkhibVKuBOF_PrYhBHHVdnDCGIqKi6P7AZJuQGfPDe8OVHWAVH3m0h8gw6RBWtncTT49ypeoGTvB7HD7ubt2LC
分类:其他好文   时间:2014-12-03 13:52:51    阅读次数:109
筛选法求素数
// 100 prime number// 筛选法 即:“埃拉托色尼筛选法”// 找出一个非素数就把它挖掉,最后剩下就是素数/* * 找出1~n的素数表 * 1、挖去1 * 2、用下一个未挖去的数p去除p后面各数,把p的倍数挖掉 * 3、检查p是否小于n的整数部分(如果n=1000,则坚持p#inc...
分类:其他好文   时间:2014-12-03 13:51:18    阅读次数:150
strits2初始配置总结
********************************************************************************************************************struts2第一天课程的简单配置:新建WebProject后导入S...
分类:其他好文   时间:2014-12-03 13:50:29    阅读次数:251
下载站焦点图
/* down.js by sunhw 2014-11-17*/;(function(){ function SiderFocus(option){ this.option = T.object.extend({ root : '', dot : '', list : '', au...
分类:其他好文   时间:2014-12-03 13:50:57    阅读次数:205
Word Break II
Given a stringsand a dictionary of wordsdict, add spaces insto construct a sentence where each word is a valid dictionary word.Return all such possibl...
分类:其他好文   时间:2014-12-03 13:49:18    阅读次数:163
用Socket编写的聊天小程序
Socket是什么?是套接字,除此之外我也不太清楚,先略过直接上实例,首先服务端: private int ServerPoint = 8102; //自定义端口号 private string ServerUser = "Tracy"; //自定义昵称 private Socket client....
分类:其他好文   时间:2014-12-03 13:51:36    阅读次数:337
集体智慧编程第8章
集体智慧编程第8章部分函数的意见
分类:其他好文   时间:2014-12-03 13:50:25    阅读次数:226
AlwaysON同步的原理及可用模式
新一代读写分离技术——AlwaysOn早在SQL Server 2005的时候微软就已经实现了数据库的查询分离技术——发布订阅。但生产库和查询库的同步性能较差,时常出现性能问题,因此在大型生产环境中一直被人所诟病。从SQL Server 2012开始,微软逐渐使用AlwaysON技术来取代发布订阅。...
分类:其他好文   时间:2014-12-03 13:49:04    阅读次数:366
PDCA环(戴明环)
PDCA(Plan-Do-Check-Action的简称)循环是品质管理循环,针对品质工作按规划、执行、查核与行动来进行活动,以确保可靠度目标之达成,并进而促使品质持续改善。由美国学者爱德华兹·戴明提 出。这个四部的循环一般用来提高产品质量和改善产品生产过程。这个过循环也被人熟知为:Plan-Do-...
分类:其他好文   时间:2014-12-03 13:49:11    阅读次数:367
Copy List with Random Pointer
A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.Return a deep copy ...
分类:其他好文   时间:2014-12-03 13:47:22    阅读次数:151
BZOJ1895: Pku3580 supermemo
1895: Pku3580 supermemoTime Limit: 15 SecMemory Limit: 64 MBSubmit: 77Solved: 47[Submit][Status]Description给出一个初始序列fA1;A2;:::Ang,要求你编写程序支持如下操作:1. ADDx...
分类:其他好文   时间:2014-12-03 13:48:28    阅读次数:246
Word Break
Given a stringsand a dictionary of wordsdict, determine ifscan be segmented into a space-separated sequence of one or more dictionary words.For exampl...
分类:其他好文   时间:2014-12-03 13:48:35    阅读次数:151
Reorder List
Given a singly linked listL:L0→L1→…→Ln-1→Ln,reorder it to:L0→Ln→L1→Ln-1→L2→Ln-2→…You must do this in-place without altering the nodes' values.For exam...
分类:其他好文   时间:2014-12-03 13:49:04    阅读次数:154
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!