http://www.nowamagic.net/librarys/news/detail/1499本文作者为 cloudadmin.mx 的 CEO 暨创办人 Alfredo Juárez每个人都在谈论这个或那个企业家开发了什么东西,接着成了亿万富翁,讲得好像是某件一夕之间发生的事。但没人讨论从一...
分类:
其他好文 时间:
2014-11-16 09:17:50
阅读次数:
202
容器归纳I. collection 容器 高层次接口set 与 list 继承collection 接口 两者不同是set:元素 无序且不可重复 常用实现类 hashsetlist:元素 有序 且可以重复 常用实现类 linkedlist,arraylist,vector 三者特点解释 线程安全如果...
分类:
编程语言 时间:
2014-11-16 09:17:22
阅读次数:
148
1 所需软件
jdk-7u25-windows-i586.exe
python-2.7.8.amd64.msi
cocos2d-x-3.2.zip
apache-ant-1.9.4.zip
adt-bundle-windows-x86-20140321.zip
android-ndk-r9d-windows-x86.zip
截图:
2 安装j...
分类:
其他好文 时间:
2014-11-16 08:17:05
阅读次数:
318
1 打开建好的T32 Cocos2dx-3.2的一个项目
2 设置Cocos显示窗口的位置是在AppDelegate.cpp中:
3 设置自适应窗口大小的代码是在上面的代码后面紧接着就添加:
glview->setDesignResolutionSize(480,320, ResolutionPolicy::EXACT_FIT);
...
分类:
其他好文 时间:
2014-11-16 08:14:20
阅读次数:
150
HTML5提供了Canvas对象,为绘图应用提供了便利.
Javascript可运行于浏览器中, 而不需要安装特定的编译器;
基于HTML5和Javascript语言, 可随时编写应用, 为算法测试带来便利.
针对TSP问题, 编写了Ant colony algorithm, 用于演示该算法...
分类:
编程语言 时间:
2014-11-16 08:16:16
阅读次数:
326
一对多关联映射和多对一关联映射的映射原理是一致的,都是在多的一端加入一个外键,指向一的一端。关联关系都是由多端维护,一端维护多端的关系,在加载一端时,可以将多端加载上来。...
分类:
Web程序 时间:
2014-11-16 08:15:38
阅读次数:
310
http://www.aqee.net/kiss-my-yagni/我们都知道KISS (Keep It Simple, Stupid)和 YAGNI (You Ain’t Gonna Need It)软件开发原则,然而,过度复杂的软件仍然随处可见。假设我们需要一个应用服务。没错,缺少分布式事务管理...
分类:
其他好文 时间:
2014-11-16 08:15:51
阅读次数:
267
http://www.nowamagic.net/librarys/veda/detail/1955前言这篇文章是写给Team Leader和往这个方向前进的人。也适合一般的程序员,对你们在团队合作的理解上面会有所帮助;对你将来选择什在什么样的团队做事也有帮助。在文章中我也侧面道破了国内好多敏捷开发...
分类:
其他好文 时间:
2014-11-16 08:13:55
阅读次数:
574
http://www.aqee.net/looking-back-my-recent-nine-months-as-an-indie-developer/引言有些人可能还记得,去年年初时,我写过一篇文章介绍我是如何开始成为一个独立程序员的文章。随着新的一年的到来,我想是该做一些反省/总结的时候了。在...
分类:
其他好文 时间:
2014-11-16 08:14:16
阅读次数:
255
same question as:why is PAXOS necessary?1, what if >1 nodes become leaders simultaneously?that's why we need phase#1 (prepare) to select a leader.2, w...
分类:
其他好文 时间:
2014-11-16 08:15:30
阅读次数:
210
Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.You should preserve the o...
分类:
其他好文 时间:
2014-11-16 08:15:41
阅读次数:
222
1.js string坑爹的“==”js的String类型与java的String类型不同,比较的时候不用equals,可以直接用"==".测试了下,这个"=="好像比较坑爹怎么能有这么没道理的事情?a=c,b=c,但是a竟然不等于b!!!我的结论是js中的String类型虽然没有equals方法,...
分类:
编程语言 时间:
2014-11-16 08:14:08
阅读次数:
211
Follow up for "Remove Duplicates":What if duplicates are allowed at most twice?For example,Given sorted array A = [1,1,1,2,2,3],Your function should ....
分类:
其他好文 时间:
2014-11-16 08:14:58
阅读次数:
196
3715: [PA2014]LustraTime Limit:10 SecMemory Limit:128 MBSubmit:237Solved:149[Submit][Status]DescriptionByteasar公司专门外包生产带有镜子的衣柜。刚刚举行的招标会上,有n个工厂参加竞标。所有镜...
分类:
其他好文 时间:
2014-11-16 08:13:58
阅读次数:
239
Given a sorted linked list, delete all duplicates such that each element appear only once. For example,Given 1->1->2, return 1->2.Given 1->1->2->3->3,...
分类:
其他好文 时间:
2014-11-16 08:11:30
阅读次数:
220
Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list. For example,Given 1->2...
分类:
其他好文 时间:
2014-11-16 08:14:02
阅读次数:
220
Follow up for "Search in Rotated Sorted Array":What ifduplicatesare allowed?Would this affect the run-time complexity? How and why?Write a function to...
分类:
其他好文 时间:
2014-11-16 08:12:43
阅读次数:
145