问题描述:超市有4种包装的鸡蛋,分别是3个一盒,6个一盒,9个一盒和20个一盒。问顾客要买N个鸡蛋时,所有的组合方案。(Morgen Stanley 2014
Intern).核心代码: 1 void BuyeggsCore(vector &coins, const int target, int ...
分类:
其他好文 时间:
2014-05-16 20:17:07
阅读次数:
289
之前有个html"
target=_blank>xp下利用控制面板的cpl文件留后门,然后又有了用.cpl文件加账号的技术,lcx真的很厉害今天研究了一下用户控制面板文件nusrmgr.cpl,发现调用的是Shell.Users来加用户,它还同时调用了wscript.shell、Shell.Appl...
Two SumGiven an array of integers, find two
numbers such that they add up to a specific target number.The function twoSum
should return indices of the...
分类:
其他好文 时间:
2014-05-15 10:48:59
阅读次数:
322
LeetCode-001 Two Sum
Given an array of integers, find two numbers such that they add up to a specific target number.
The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2...
分类:
其他好文 时间:
2014-05-15 04:34:50
阅读次数:
293
题意:给定一组数和另一个数,在这组数中找两个数,使它们的和等于给定的数
思路1: --> 错,因为题目要求返回下标。
1.排序
2.两个下标,一个指向头,一个指向尾
3.如果下标指向的两个元素相加大于给定的数,尾下标减一
如果小于,头下标加一
思路2: hash
1.用hash存储每个数的下标
2.数组,看hash[target-num[i]]是否存在
复杂度:时间O(n), 空间O(n)...
分类:
其他好文 时间:
2014-05-15 01:28:13
阅读次数:
297
[ 问题: ]
Given an array of integers, find two numbers such that they add up to a specific target number.
The function twoSum should return indices of the two numbers such that they add up to the ta...
分类:
其他好文 时间:
2014-05-15 00:04:39
阅读次数:
377
实际上也是一个二分查找的问题。
要找出范围,决定了当找到这个数时不能马上返回,如果找target最前面的那个位置,只有当这个位置等于target,且这个位置的前一个位置不等于target时,才能返回这个位置。如果找的是target最后面的那个位置,那么只有当这个位置等于target,且这个位置的后一个位置不等于target时,才会返回它。不满足返回条件时,下一次递归走什么位置也不一样,找前面的时...
分类:
其他好文 时间:
2014-05-14 21:58:25
阅读次数:
350
BBS:bbs.51osos.com zzsi_ljz注册信箱是:pyfx2008@qq.comBLOG:zzljz.lofter.comcysky.blog.51cto.com 技术网站:www.51cto.com cyskywww.oschina.compyfx2008@qq.comhttps://git.oschina.net/ pyfx2008@qq.com我的个性:http://git.oschina/net/zz..
分类:
Web程序 时间:
2014-05-14 17:21:22
阅读次数:
283
StarWindiSCSISAN是一个iSCSI目标软件,含有免费和付费版本.该软件可安装在任何32位或64位的WindowsServer,使WindowsServer变为一台SAN。支持多种虚拟化环境,包括VMware,MicrosoftHyper-V和Citrix.在中小型企业中,可以部署其免费版本在测试环境中进行测试和评估.其免费版本也..
命令的学习:1.查看命令帮助的手段 Man命令名或者命令--help 常用看的12358 搜索引擎linux命令名2.涉及到的其他的技术点有:符号作用符号作用>输出重定向符.一个点当前目录>>..
分类:
其他好文 时间:
2014-05-13 00:51:53
阅读次数:
348