首页 > 2014年02月12日 > 全部分享
【行业干货】2013中国零售商排名 - 课程公告板 - 京东内部论坛 - Powered by Discuz!
【行业干货】2013中国零售商排名 - 课程公告板 - 京东内部论坛 - Powered by Discuz!【行业干货】2013中国零售商排名 [复制链接]bjpanzhoulan发短消息加为好友bjpanzhoulan 当前离线 注册时间2012-7-30最后登录2014-2-11阅读权限200...
分类:其他   时间:2014-02-12 12:53:31    收藏:0  评论:0  赞:0  阅读:1156
《淘宝技术这十年》读书笔记
这本书很有趣,故事叙述好玩,且价值颇高; 它让更多人了解并熟悉淘宝,让我们近距离观察大公司成长过程中遇到的问题;我将从三个方面来做这个概要版的读书笔记;淘宝的升级路线叙述了淘宝的成长路线,如果能引起大家的兴趣,那最好,书中有详实有味的数据供人品味;淘宝创新的技术一节总结淘宝在壮大的道路中所创造的技术...
分类:其他   时间:2014-02-12 12:50:11    收藏:0  评论:0  赞:0  阅读:421
6 个重构方法可帮你提升代码质量(转载)
在过去做了不少代码走读,发现了一些代码质量上比较普遍的问题,以下是其中的前五名:臃肿的类: 类之所以会臃肿,是因为开发者缺乏对最基本的编码原则,即“单一职责原则”(SRP)的理解。这些类往往会变得很臃肿,是由于不同的且在功能上缺少关联的方法都放在了相同的类里面。长方法: 方法之所以会变得很长主要是有...
分类:其他   时间:2014-02-12 12:43:31    收藏:0  评论:0  赞:0  阅读:311
PL/SQL Developer 9.x 注册码
Product Code:46jw8l8ymfmp2twwbuur8j9gv978m2q2duserial Number:307254password:xs374ca
分类:数据库技术   时间:2014-02-12 12:46:51    收藏:0  评论:0  赞:0  阅读:517
[Leetcode]-- Construct Binary Tree from Preorder and Inorder Traversal
Given preorder and inorder traversal of a tree, construct the binary tree.Note:You may assume that duplicates do not exist in the tree.ref:http://fish...
分类:其他   时间:2014-02-12 12:40:11    收藏:0  评论:0  赞:0  阅读:338
leetcode--Linked List Cycle II
Given a linked list, return the node where the cycle begins. If there is no cycle, returnnull.Follow up:Can you solve it without using extra space?/**...
分类:其他   时间:2014-02-12 12:36:51    收藏:0  评论:0  赞:0  阅读:324
[Leetcode]-- Construct Binary Tree from Inorder and Postorder Traversal
Given inorder and postorder traversal of a tree, construct the binary tree.Note:You may assume that duplicates do not exist in the tree.后续遍历 根节点在最后一个元...
分类:其他   时间:2014-02-12 12:33:31    收藏:0  评论:0  赞:0  阅读:340
leetcode--Symmetric Tree
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).For example, this binary tree is symmetric: 1 / \ 2 2 / ...
分类:其他   时间:2014-02-12 12:26:51    收藏:0  评论:0  赞:0  阅读:315
leetcode--Linked List Cycle
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?/** * Definition for singly-linked list. *...
分类:其他   时间:2014-02-12 12:30:11    收藏:0  评论:0  赞:0  阅读:340
Construct Binary Tree from Preorder and Inorder Traversal
1 public class Solution { 2 public TreeNode buildTree(int[] preorder, int[] inorder) { 3 int len1 = preorder.length; 4 int len2 = inorder.length; 5 if...
分类:其他   时间:2014-02-12 12:23:31    收藏:0  评论:0  赞:0  阅读:359
内存管理
place holder
分类:其他   时间:2014-02-12 12:20:11    收藏:0  评论:0  赞:0  阅读:320
Construct Binary Tree from Inorder and Postorder Traversal
1 public class Solution { 2 public TreeNode buildTree(int[] inorder, int[] postorder) { 3 int inEnd = inorder.length-1; 4 int postEnd = postorder.leng...
分类:其他   时间:2014-02-12 12:16:51    收藏:0  评论:0  赞:0  阅读:346
poj2676 Sudoku
这题目是一道求解数独的题目。做了简单优化,也从网上找了不少数据测试都OK,然后提交就TLE。最后看了下DISCUSS。发现说倒着搜能过,正着搜超时。然后我只是把i=1;i=1;--i。。。。过了。。。我的代码进行了优化,剔除了一定不会出现在该位置的值。所以略长,不过很好理解。大家请欣赏! 1 #in...
分类:其他   时间:2014-02-12 12:10:11    收藏:0  评论:0  赞:0  阅读:390
Count and Say
1 public class Solution { 2 public String countAndSay(int n) { 3 String res = "1"; 4 if(n==0) return res; 5 for(int i=1;i1){22 temp = temp+count+last;...
分类:其他   时间:2014-02-12 12:06:51    收藏:0  评论:0  赞:0  阅读:333
Sort Colors
Given an array withnobjects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, wh...
分类:其他   时间:2014-02-12 12:03:31    收藏:0  评论:0  赞:0  阅读:354
Switching JRE Version
Switching between installed Java versions can be accomplished using the update alternatives command.To get a list of your installed Java platforms, ru...
分类:其他   时间:2014-02-12 12:00:11    收藏:0  评论:0  赞:0  阅读:400
java.logging的重定向?
接着昨天的工作。上面说要重定向java.util.logging.Logger的输出, 发现也不是不可能。package jmx;import java.util.logging.FileHandler;import java.util.logging.Filter;import java.util...
分类:其他   时间:2014-02-12 11:56:51    收藏:0  评论:0  赞:0  阅读:311
Codeforces Round #229 (Div. 2) 解题报告
开了个小号去做div2写一下解题报告。Problem AInna and Alarm Clock简单题。直接开数组标记一下即可。代码如下: 1 /************************************************** 2 * Author : xiaohao Z 3 *...
分类:其他   时间:2014-02-12 11:50:11    收藏:0  评论:0  赞:0  阅读:421
for循环例子1、2、3
1 /* 2 Name:for循环例子1、2、3 3 Copyright: By.不懂网络 4 Author: Yangbin 5 Date:2014年2月12日 02:12:41 6 Description:该代码用来熟悉for语句的流程思路,分3个例子解释for语句的循环流程。 7 */ 8 #...
分类:其他   时间:2014-02-12 11:46:51    收藏:0  评论:0  赞:0  阅读:1254
求1-100之间所有能被3整除的数字之和
1 /* 2 Name:求1-100之间所有能被3整除的数字之和 3 Copyright: By.不懂网络 4 Author: Yangbin 5 Date:2014年2月12日 02:37:42 6 Description:用注释中的思路去解析这个例子应该怎样去做。 7 */ 8 # includ...
分类:其他   时间:2014-02-12 11:43:31    收藏:0  评论:0  赞:0  阅读:523
733条   上一页 1 ... 21 22 23 24 25 ... 37 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!