码迷,mamicode.com
首页 > 其他好文
需求分析时的4个关注点
backgroud priority effort riskbackgroud: 需求的来源和出发点priority: 该需求在当前产品体系中的优先级,是否需要优先effort: 实现该需求有多大的工作量,以目前团队的平均开发水平来衡量risk: 实现该需求有哪些风险(技术难度上的,依赖其他需求的实...
分类:其他好文   时间:2015-12-05 09:41:22    阅读次数:173
99乘法表
public class Chenfabiao { public static void main(String[] args) { for (int i = 1; i <= 9; i++) { for (int j = 1; j <= i; j++) { ...
分类:其他好文   时间:2015-12-05 09:39:18    阅读次数:177
[LeetCode]String to Integer (atoi)
主要是一下步骤1.delete space in front of str2.check if str startsWith other characters3.check if str is positive4.check the end of str5.check if overflowpubl...
分类:其他好文   时间:2015-12-05 09:40:53    阅读次数:117
阶乘代码
public class jiecheng2 { public static void main(String[] args) { // 1+1/2!+1/3!+1/4!=1/5!+...+1/20!=? int x=20; doubl...
分类:其他好文   时间:2015-12-05 09:37:59    阅读次数:163
输出九九乘法表
public class chengfabiao { public static void main(String[] args) { // TODO 自动生成的方法存根 int z = 1; for(int a = 1;a < 10;...
分类:其他好文   时间:2015-12-05 09:38:38    阅读次数:137
输出菱形代码
public class sanjiaoxing3 {//菱形 public static void main(String[] args) { int m=4; for (int i=0;i0;i--){ for(int j=0;j=0;j--){ ...
分类:其他好文   时间:2015-12-05 09:37:49    阅读次数:132
[LeetCode]Lowest Common Ancestor of a Binary Tree
第一个是普通二叉树,第二个是bstpublic class Solution { public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) { if (root == null) { ...
分类:其他好文   时间:2015-12-05 08:26:38    阅读次数:148
机器学习实战-学习笔记-第一章
Added C:\Anaconda and C:\Anaconda\Scripts to PATH.C:\Anaconda>pythonPython 2.7.10 |Anaconda 2.3.0 (64-bit)| (default, May 28 2015, 16:44:52) [MSC v.15...
分类:其他好文   时间:2015-12-05 08:24:24    阅读次数:190
九九乘法表代码
1 package chengfabiao; 2 3 public class chengfabiao { 4 5 public static void main(String[] args) 6 { 7 //九九乘法表 8 ...
分类:其他好文   时间:2015-12-05 08:26:02    阅读次数:203
[boost] build boost with intel compiler 16.0.XXX
IntroductionThere are few information about how to compile boost with Intel compiler. This article is to describe a simple command steps to let you get a boost library with Intel compiler support.Step...
分类:其他好文   时间:2015-12-05 07:15:05    阅读次数:147
文件系统扫描的工具类
文件系统扫描的工具类说明递归扫描文件夹系统,并以树形结构组织起来支持沙盒、bundle扫描支持扫描深度设置用File对象表示一个扫描出来的文件,File对象包含了一个文件或者文件夹的基本文件信息(如文件名字,是否隐藏,文件扩展名,文件url地址等等),便于后续操作源码https://github.c...
分类:其他好文   时间:2015-12-05 07:14:50    阅读次数:171
[LeetCode]Spiral Matrix II
public class Solution { public int[][] generateMatrix(int n) { int level = (n + 1) / 2; int[][] result = new int[n][n]; int tm...
分类:其他好文   时间:2015-12-05 07:12:39    阅读次数:201
读《搜狗王小川:我要拆掉围墙》总结
原文网址:http://www.cooboys.com/Article/detail/226691.当时到搜狐之后又做 CMS,因为搜狐是媒体公司。搜狐那会儿是没有成熟系统的,我说我搞得定,然后确实也就搞定了。2.后来我们还把另一个事做起来了,就是搜狗的输入法,这个事情还是蛮有渊源的。当时我团队中间...
分类:其他好文   时间:2015-12-05 07:14:18    阅读次数:211
[学点英语]扎克伯格给女儿的信,translation of zucherber's letter to her daughter( Chinese version)
A letter to our daughter 扎克伯格写给女儿的信Mark Zuckerberg·Tuesday, December 1, 2015Dear Max, 亲爱的玛克斯Your mother and I don't yet have the words to describe the...
分类:其他好文   时间:2015-12-05 07:13:40    阅读次数:503
LeetCode Plus One
原题链接在这里:https://leetcode.com/problems/plus-one/特殊情况是 全是9时需要新建一个数组。Time Complexity: O(n), Space O(n).AC Java: 1 public class Solution { 2 public in...
分类:其他好文   时间:2015-12-05 07:12:29    阅读次数:117
[LeetCode]Swap Nodes in Pairs
上面是lc的单链表题目,下面我又自己加了个双向链表的情况public class Solution { public ListNode swapPairs(ListNode head) { if (head == null || head.next == null) { ...
分类:其他好文   时间:2015-12-05 07:12:25    阅读次数:152
264. Ugly Number II
题目:Write a program to find then-th ugly number.Ugly numbers are positive numbers whose prime factors only include2, 3, 5. For example,1, 2, 3, 4, 5, 6...
分类:其他好文   时间:2015-12-05 07:12:25    阅读次数:179
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!