码迷,mamicode.com
首页 > 2015年03月30日 > 全部分享
HDU 4291 A Short problem (2012成都网络赛,矩阵快速幂+循环节)
链接: click here~~ 题意: According to a research, VIM users tend to have shorter fingers, compared with Emacs users.   Hence they prefer problems short, too. Here is a short one:   Given n (1 18), Y...
分类:其他好文   时间:2015-03-30 13:20:40    阅读次数:152
HashMap源码阅读(1)- 初始值、数据结构、hash计算
最近有被问及HashMap的相关问题,不得不再阅读源码,刨根问底。 1)初始值 我们平常使用Map的时候,创建的时候都是Map map = new HashMap();那么HashMap的默认大小是多少呢?查看源码,发现这么一段: 1234567891011121314151617 /**  * The default initial capacity - MUST be a...
分类:其他好文   时间:2015-03-30 13:22:35    阅读次数:175
一个程序员对李开复自传的记忆----未完待续
我非常喜欢两句话:  the best people require least and give most. 我步入丛林,因为我希望生活得有意义,我希望活得深刻,并汲取生命中所有的精华。然后从中学习,以免让我在生命终结时,却发现自己从来没有活过. 他与人交往的谦和深深吸引了我,  把对方当作6年纪的小学生去交流,  这样你的思维更加清晰,  态度也会更加友善. 先记一些, 下次接着...
分类:其他好文   时间:2015-03-30 13:20:47    阅读次数:95
UVA 111 History Grading 【lcs】
Brief Description: 一个历史考试,有n个历史事件, 它们之间的年份是不同的,要学生把这些事件按照正确的顺序排列出来。有两种记分方式,采用的是第二种: 假设有历史事件1,2,3,4, 它们正确的时间顺序是1,2,3,4, 然后假设学生的答案是1,3,2,4, 那么按照相对顺序正确的数量,答对了三个(1,2,4或者1,3,4),也就是它与正确答案的最长公共子序列长度是3,便是答...
分类:其他好文   时间:2015-03-30 13:19:47    阅读次数:104
Path Sum
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum. For example: Given the below binary tree and sum ...
分类:其他好文   时间:2015-03-30 13:20:37    阅读次数:84
【贪心专题】POJ 1328 G - Radar Installation (区间覆盖)
链接:click here~~ 题意: Description Assume the coasting is an infinite straight line. Land is in one side of coasting, sea in the other. Each small island is a point locating in the sea side. And any...
分类:其他好文   时间:2015-03-30 13:18:59    阅读次数:167
【db2】体系结构概述
实例级别注册变量: db2set parameter =value –I instancename; 数据库管理器(实例)配置文件dbm cfg: db2 get dbm cfg db2 update dbm cfg using parameter...
分类:数据库   时间:2015-03-30 13:21:34    阅读次数:233
【转载】C++ 编译器的函数名修饰规则
转载自:http://mxdxm.iteye.com/blog/510486 C++ 编译器的函数名修饰规则  函数名字修饰(Decorated Name)方式      函数的名字修饰(Decorated Name)就是编译器在编译期间创建的一个字符串,用来指明函数的定义或原型。LINK程序或其他工具有时需要指定函数的名字修饰来定位函数的正确位置。多数情况下程序员并不需要知...
分类:编程语言   时间:2015-03-30 13:13:36    阅读次数:305
【db2】表空间的管理,创建,维护
create database mydb def_prefetch_sz 4 catalog tablespace managed by database using (fle ‘data1/1.dbf’ 10G, file ‘/data2/1.dbf’ 1G ) extentsize 8 prefetchsize 16 temporary tablespace managed by system using (‘/data/tmp1.dbf’,’/data/tmp2.dbf’) user tables...
分类:数据库   时间:2015-03-30 13:13:25    阅读次数:276
imageView..setBackgroundResource 没有效果
有的时候调用该方法,今天纠结了一会,  我查看了一下 xml 原来是因为 xml中设置的是 src 不是 backgroud!...
分类:其他好文   时间:2015-03-30 13:14:43    阅读次数:112
【oracle】字符集、国家字符集及NLS_LANG运行库
--NLS_LANG=_. --language指定了日期的显示方式,oracle消息使用的语言 --territory参数指定了货币和数字的格式 --characterset控制了字符集...
分类:数据库   时间:2015-03-30 13:14:21    阅读次数:151
Path Sum II
Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum. For example: Given the below binary tree and sum = 22, 5 / \...
分类:其他好文   时间:2015-03-30 13:14:32    阅读次数:89
table insert
BCDETABLE1入力内容insert into TABLE1 values(項目1ITEM1CHARUT001'UT001',項目2ITEM2NUMBER22,項目3ITEM3VARCHAR1675186196'1675186196',="insert into "&B8&" valu...
分类:其他好文   时间:2015-03-30 13:12:28    阅读次数:116
[statsvn]-svn代码量统计
用statasvn进行代码量统计的时候,第一步需要获取到项目的日志,但是我本机的svn1.4没有安装命令行,重新运行1.4的安装包也没有命令行的选项。。。那就升级到最新的svn1.8好了,下载最新的svn安装包,按照要求直接运行了两次安装,第一次安装,第二次修复,然后重点来了,重启的时候报MSVCP...
分类:其他好文   时间:2015-03-30 13:13:25    阅读次数:108
数据库简单的查询
Api.php'; var_dump($data); echo ''; }?>html: 姓名:查询
分类:数据库   时间:2015-03-30 13:13:03    阅读次数:173
c#学习笔记之类和对象
一、与生活中的类一样,程序中的类描述了一种对象,定义一个完整的类,需要包括字段、属性、方法、构造函数和析构函数(析构函数在程序编译时自动生成,可以不必自己写)。定义类的方法和字段时,要通过访问修饰符来修饰类和类成员的访问权限。public为公共访问,可以有任何其他类成员访问。private为私有访问...
分类:Windows程序   时间:2015-03-30 13:12:35    阅读次数:169
javascipt面试题目
考虑下面的代码:(function() { var a = b = 5;})();console.log(b);什么会被打印在控制台上?回答上面的代码会打印 5。这个问题的诀窍是,这里有两个变量声明,但 a 使用关键字var声明的。代表它是一个函数的局部变量。与此相反,b 变成了全局变量。这个问题的...
分类:编程语言   时间:2015-03-30 13:11:35    阅读次数:126
2276条   上一页 1 ... 84 85 86 87 88 89 90 ... 134 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!