码迷,mamicode.com
首页 > 其他好文
SEDA工作笔记(一)
摘要在普遍认知中,软件开发实践是一项充满不确定性的工作,这是由于编码工作占据了其绝大部分的工作,而编码本身就是具有极大不确定性的。同样,计算机科学被视作一门门槛低,基于经验,而无理论意义的纯工程类学科。这种观念不仅为广泛非本专业内人士所共持,即便本门师生,从业人员也偶有赞同。本文试图通过一次对SED...
分类:其他好文   时间:2014-06-04 20:03:42    阅读次数:268
Combinations
Given two integersnandk, return all possible combinations ofknumbers out of 1 ...n.For example,Ifn= 4 andk= 2, a solution is:[ [2,4], [3,4], [2,3], [1...
分类:其他好文   时间:2014-06-04 20:02:13    阅读次数:228
Subsets
Given a set of distinct integers,S, return all possible subsets.Note: Elements in a subset must be in non-descending order. The solution set m...
分类:其他好文   时间:2014-06-04 20:01:32    阅读次数:340
Spiral Matrix
Given a matrix ofmxnelements (mrows,ncolumns), return all elements of the matrix in spiral order.For example,Given the following matrix:[ [ 1, 2, 3 ]....
分类:其他好文   时间:2014-06-04 20:06:52    阅读次数:256
张晓晗新书《我不是女王》出版上市
图书批发市场:近日,90后新锐畅销书作家张晓晗新书《我不是女王》由群言出版社出版。张晓晗:女,摩羯座。家住上海,毕业于上海戏剧学院,主修戏剧影视文学专业。长期在《萌芽》发表作品,著有《最好的年代》《少年祝安》《女王乔安》等作品。 内容提要 桃说自己的青春就是一场接连不断的艳遇,青涩如周觅,沉...
分类:其他好文   时间:2014-06-04 20:06:11    阅读次数:254
照相机滤镜使用,优化解码和滤镜导致的预览卡屏现象
这几天看到亚瑟boy的技术连载,也试着做了下带滤镜特效的照相机,效果也出来了,但是发现添加滤镜特效后的预览窗口卡屏现象很严重,于是自己索性 试着尝试修改,在亚瑟和其他网友的代码中基本上都是对于照相机data视频流先进行解码,然后对解码出的帧Bitmap进行滤镜算法处理,这个是必走的流 程,而每一帧在...
分类:其他好文   时间:2014-06-04 20:05:38    阅读次数:420
Search Insert Position
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in or...
分类:其他好文   时间:2014-06-04 20:09:47    阅读次数:266
数字公仔设计蔚为风尚 马路科技打造《魔兽世界》典藏级公仔
公仔是否具有收藏价值?除了公仔本身所代表的作品意义外,最重要的项目之一就是制作的精细程度,然而以往手工公仔设计的过程中充满了许多制作上的变量,因此数字公仔设计已经是许多许多企业的首选方式。马路科技结合了专业人因设计工具FreeForm自由造型系统以及三維打印,不仅迅速的完成了多项公仔设计服务工作,更...
分类:其他好文   时间:2014-06-04 20:09:02    阅读次数:155
Text Justification
Given an array of words and a lengthL, format the text such that each line has exactlyLcharacters and is fully (left and right) justified.You should p...
分类:其他好文   时间:2014-06-04 20:08:22    阅读次数:296
发发牢骚
这家公司已经呆了两个月了。出于个人技术不是特别好,找工作时希望能找个团队协作比较好的,至少能照顾一下新来的同事,能在技术上能有多一些的交流。对自己个人技术会有一个大的帮助。至少我个人是这样感觉的。孤军奋战是比较辛苦的,往往一个不是特别难的问题,但对于一个经验不丰富,又苦于百度也找不到答案是最苦恼.....
分类:其他好文   时间:2014-06-04 20:10:59    阅读次数:211
Insert Interval
Given a set ofnon-overlappingintervals, insert a new interval into the intervals (merge if necessary).You may assume that the intervals were initially...
分类:其他好文   时间:2014-06-04 20:10:23    阅读次数:204
Combination Sum
Given a set of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the candidate numbers sums toT.Thesamerepeated num...
分类:其他好文   时间:2014-06-04 20:15:09    阅读次数:289
Combination Sum II
Given a collection of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the candidate numbers sums toT.Each number ...
分类:其他好文   时间:2014-06-04 20:14:25    阅读次数:287
First Missing Positive
Given an unsorted integer array, find the first missing positive integer.For example,Given[1,2,0]return3,and[3,4,-1,1]return2.Your algorithm should ru...
分类:其他好文   时间:2014-06-04 20:13:41    阅读次数:350
设计师眼中功能强大的Xcode
作为设计师,不仅要能创造出移动为先的新产品,更要了解能创造出优秀移动作品的工具。这个实现过程可以让我们的设计更加优秀。 过去两个月,我每天在 Xcode 上花费的时间大约有 10 个小时,我学到了很多完全改变我的工作流程的技术。Xcode 是一款成熟的工具包含了很多强有力的但没被经常使用的功能。如....
分类:其他好文   时间:2014-06-04 20:13:00    阅读次数:249
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-06-04 20:12:15    阅读次数:199
Scramble String
Given a strings1, we may represent it as a binary tree by partitioning it to two non-empty substrings recursively.Below is one possible representation...
分类:其他好文   时间:2014-06-04 20:11:38    阅读次数:303
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!