首页 > 2014年01月31日 > 全部分享
面试准备 - HashTable 的C#实现 开放地址法
Hashtable是很经常在面试中遇到的数据结构,因为他的O(1)操作时间和O(n)空间之所以自己写一份是因为:加深对于hashtable的理解某些公司面试的时候需要coding.......开放地址法 Xn=(Xn-1 +b ) % size理论上b要和size是要精心选择的,不过我这边没有做特别...
分类:其他   时间:2014-01-31 14:17:29    收藏:0  评论:0  赞:0  阅读:457
为首次部署MongoDB做好准备:容量计划和监控
如果你已经完成了自己新的MongoDB应用程序的开发,并且现在正准备将它部署进产品中,那么你和你的运营团队需要讨论一些关键的问题: 最佳部署实践是什么? 为了确保应用程序满足它所必须的服务层次我们需要监控哪些关键指标? 如何能够确定添加分片的时机? 有哪些工具可以对数据库进行备份和恢复? 怎样才能安...
分类:数据库技术   时间:2014-01-31 14:16:39    收藏:0  评论:0  赞:0  阅读:599
UVa 10879 Code Refactoring
Problem BCode RefactoringTime Limit: 2 seconds"Harry, my dream is a code waiting to bebroken. Break the code, solve the crime."Agent CooperSeveral alg...
分类:其他   时间:2014-01-31 14:15:49    收藏:0  评论:0  赞:0  阅读:407
查看LINUX 系统硬件等详细信息
转载这位朋友[地址]几个cpumore /proc/cpuinfo |grep "physical id"|uniq|wc -l每个cpu是几核(假设cpu配置相同)more /proc/cpuinfo |grep "physical id"|grep "0"|wc -lcat /proc/cpui...
分类:其他   时间:2014-01-31 14:12:29    收藏:0  评论:0  赞:0  阅读:444
[Leetcode]-- Add Binary
Given two binary strings, return their sum (also a binary string).For example,a ="11"b ="1"Return"100".StringBuilder + reverse methodpublic class Solu...
分类:其他   时间:2014-01-31 14:11:39    收藏:0  评论:0  赞:0  阅读:430
Linux下查看CPU Cache信息
1.查看Linux环境下Cache的级数,用如下命令:ls /sys/devices/system/cpu/cpu0/cache如下图所示:index0是一级Data Cache,大小是32k,如下图所示:index1是一级Instruction Cache,大小是32k,如下图所示:index2是...
分类:其他   时间:2014-01-31 14:10:49    收藏:0  评论:0  赞:0  阅读:510
leetcode--Gas Station
There areNgas stations along a circular route, where the amount of gas at stationiisgas[i].You have a car with an unlimited gas tank and it costscost[...
分类:其他   时间:2014-01-31 14:09:59    收藏:0  评论:0  赞:0  阅读:433
[Leetcode]-- Anagrams
Given an array of strings, return all groups of strings that are anagrams.Note: All inputs will be in lower-case.思路:用map记录排序后的字符串以及首次出现的位置。1. 从strs的第一...
分类:其他   时间:2014-01-31 14:07:29    收藏:0  评论:0  赞:0  阅读:438
数据库基础知识(1)
数据库管理系统的主要功能和特征数据库系统(DataBase System, DBS)定义和组成由数据库、硬件、软件、人员组成。其中,数据库是指长期存放在计算机内、有组织、可共享的数据集合。硬件指计算机系统中的物理设备。软件包括操作系统、数据库管理系统(Database Management Syst...
分类:数据库技术   时间:2014-01-31 14:06:39    收藏:0  评论:0  赞:0  阅读:400
html & CSS 基础笔记
2014.1.30 除夕 现在已经大年初一两点二十了,还在磕codecademy的CSS。 还有几个环节CSS就结束了,卡在了position属性上,查了一会儿理解了relative和static,但是absolute和fixed傻傻分不清。再查了下W3C,觉得absolute应该是定死了的位置,而...
分类:Web开发   时间:2014-01-31 14:05:48    收藏:0  评论:0  赞:0  阅读:464
[Leetcode]-- Edit Distance
Given two wordsword1andword2, find the minimum number of steps required to convertword1toword2. (each operation is counted as 1 step.)You have the fol...
分类:其他   时间:2014-01-31 14:04:59    收藏:0  评论:0  赞:0  阅读:376
Codeforces Round #227 (Div. 2) 解题报告
Problem AGeorge and Sleep题意:给出两个时间计算上面减下面。水题代码如下: 1 //2014-01-30-21.18 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 ...
分类:其他   时间:2014-01-31 14:04:09    收藏:0  评论:0  赞:0  阅读:353
Linux下的暴力密码在线破解工具Hydra安装及其组件安装-使用
hydra可以破解:http://www.thc.org/thc-hydra,可支持AFP, Cisco AAA, Cisco auth, Cisco enable, CVS, Firebird, FTP, HTTP-FORM-GET, HTTP-FORM-POST, HTTP-GET, HTTP-...
分类:其他   时间:2014-01-31 14:03:19    收藏:0  评论:0  赞:0  阅读:681
Cassandra1.2文档学习(12)——hint机制
参考文档:http://www.datastax.com/documentation/cassandra/1.2/webhelp/index.html#cassandra/dml/dml_about_hh_c.html Hint机制是Cassandra的特性当一致性不要求时保证了写入的高可用性。但临...
分类:其他   时间:2014-01-31 14:02:28    收藏:0  评论:0  赞:0  阅读:430
LINUX 下 NMAP 内网扫描
#1.扫描内网存活主机nmap -sP 10.2.24.* |grep for > tmp#2.扫描主机端口nmap -A -T4 192.168.1.2#3.扫描主机的所有端口nmap -p 1-65535 192168.1.2#4.扫描主机的操作系统nmap -O 192.168.1.2#5.扫...
分类:其他   时间:2014-01-31 14:01:39    收藏:0  评论:0  赞:0  阅读:563
socket关闭动作以及socket状态的总结
主要部分,四次握手:断开连接其实从我的角度看不区分客户端和服务器端,任何一方都可以调用close(or closesocket)之类的函数开始主动终止一个连接。这里先暂时说正常情况。当调用close函数断开一个连接时,主动断开的一方发送FIN(finish报文给对方。有了之前的经验,我想你应该明白我...
分类:其他   时间:2014-01-31 14:00:49    收藏:0  评论:0  赞:0  阅读:547
leetcode--Remove Duplicates from Sorted Array
Given a sorted array, remove the duplicates in place such that each element appear onlyonceand return the new length.Do not allocate extra space for a...
分类:其他   时间:2014-01-31 13:59:08    收藏:0  评论:0  赞:0  阅读:369
LeetCode: Symmetric Tree
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).用递归的方法很好做。先比较对应的两个节点数值是否相同,如果相同就看第一个节点的左子和第二个节点的右子是否对称,以...
分类:其他   时间:2014-01-31 13:59:59    收藏:0  评论:0  赞:0  阅读:401
ubuntu grub
在grub>提示符下输入grub>find /boot/grub/core.img (有/boot分区的用find /grub/core.img)(hdx,y) (显示查找到的分区号)grub>root (hdx,y)grub>kernel /boot/grub/core.img (/boot分区的...
分类:其他   时间:2014-01-31 13:58:19    收藏:0  评论:0  赞:0  阅读:373
C#/.NET整数的三种强制类型转换(int)、Convert.ToInt32()、int.Parse()的区别
这三种方式都是强制把内容转换为整数,但他们之间是有区别的,如下: 一、(int)适合简单数据类型之间的转换,C#的默认整型是int32(不支持bool型)。 二、int.Parse(string sParameter)是个构造函数,参数类型只支持string类型,Parse就是把String类型转换...
分类:Web开发   时间:2014-01-31 13:57:28    收藏:0  评论:0  赞:0  阅读:421
237条   上一页 1 ... 4 5 6 7 8 ... 12 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!