摘要:
Problem Description In the new year party, everybody will get a "special present".Now it's your turn to get your special present, a lot of presents no 阅读全文
摘要:
Cocos2d-x 3.2 Lua演示样例 AssetsManagerTest(资源管理器) 本篇博客介绍Cocos2d-x 为我们提供的一个类——AssetsManager在Lua中的使用样例,效果例如以下图:Cocos2d-x 给出的样例是AssetsManagerTest,进入会发现三个菜单项 阅读全文
摘要:
问题描写叙述 输入一个整型数组,每一个元素在0~2之间,当中0。1,2分别代表红、白、蓝。现要求对数组进行排序。同样颜色的在一起,并且按红白蓝顺序先后排列。要求时间复杂度为O(n)。 问题分析 最easy想到的是排序。比方快排,归并,堆排等,但它们的时间复杂度为O(nlogn),与题意不符。 另外一 阅读全文
摘要:
class Solution: # @param {string} s # @return {string[]} def findRepeatedDnaSequences(self, s): ans = [] valCnt = dict() map = {'A' : 0, 'C' : 1, 'G': 阅读全文
摘要:
Spring的两个非常重要的功能ioc和aop 依赖反转:依赖对象的获得被反转;很多非凡的应用都是由两个或多个类通过彼此的合作来上线业务逻辑。这使得每一个对象都须要与其它对象合作,也就是说 一个对象获得其它对象的引用,这个被引用的对象就是被引用其的依赖,假设这个获取过程要考自身实现,那么非常自然的这 阅读全文
摘要:
查找相邻同样字符串var found = false; function f(str){ if(found){return;} var len = str.length; var a = str.substring(0,len/2); var b = str.substring(len/2,len) 阅读全文
摘要:
The Ball And Cups At the end of a busy day, The Chef and his assistants play a game together. The game is not just for fun but also used to decide who 阅读全文