入行了一年,感觉不知道接下来该怎么做才能继续进步了,求指教(V2EX)
@kafka0102 :做技术可以学的东西太多了,只是在不同的阶段做好不同的规划,要结合当前所做的事情去做更深入或广度的学习。以Java
Web开发为例,至少可以拓展的点有:
1、Web框架的原理学习,比如Spring、Play等等,最好自己能写出个简易的MVC框架(几千行代码)。这样至少对常用设计模式...
分类:
编程语言 时间:
2014-07-14 14:08:03
阅读次数:
239
# hdu 4586---Play the dice #----------## 解题思路:概率 ##*题目描述:一个骰子有n面,每面朝上的概率相同,并且每一面上面都有一个数字,其中有m面是彩色的,代表掷到彩色面的时还可以继续掷下去,问最终掷得的数字的期望是多少?*----------###解题方法...
分类:
其他好文 时间:
2014-07-13 19:55:18
阅读次数:
243
官方说明
原理
实例讲解
(1)生成差异包
(2)使用旧apk+差异包,在客户端合成新apk
注意事项
demo
自从 Android 4.1 开始,Google引入了应用程序的增量更新。
官方说明
Smart app updates is a new feature of Google Play that introduce...
分类:
移动开发 时间:
2014-07-13 17:07:56
阅读次数:
332
很裸的Splay,抄一下CLJ的模板当作复习,debug了一个下午,收获是终于搞懂了以前看这个模板里不懂的内容。以前用这个模板的时候没有看懂为什么get函数返回的前缀要加个引用,经过一下午的debug终于明白,如果加了引用的时候是会被修改到的,删除实际上就是将root->ch[1]->ch[0]置为...
分类:
其他好文 时间:
2014-07-11 12:57:00
阅读次数:
219
3882 - And Then There Was One
Time limit: 3.000 seconds
Let's play a stone removing game.
Initially, n stones are arranged on a circle and numbered
1,..., n clockwise (Figure 1). You are also...
分类:
其他好文 时间:
2014-07-09 10:00:13
阅读次数:
172
欧拉回路问题。
题意是说给你一些字符串,类似于成语接龙,上一个字符串尾字母必须和下一个字符串首字母相同。
把所有字符串连成一串。
根据定理判断欧拉通路,然后DFS判连通(并查集也可)
没注意题意 字符串开了str[100] 结果RE。结果字符串最长有1000.改了就AC了。
#include
#include
#include
#include
#include
...
分类:
其他好文 时间:
2014-07-08 18:04:02
阅读次数:
168
经常带代码中看见这样的代码:
public static final int APP_START=1;
public static final int APP_PAUSE=0;
public static final int APP_STOP =2;
public static final int PLAY_START=1;
public static final int P...
分类:
其他好文 时间:
2014-07-08 17:43:11
阅读次数:
267
Description
Let’s play a puzzle using eight cubes placed on a 3 × 3 board leaving one empty square.
Faces of cubes are painted with three colors. As a puzzle step, you can roll one of the cubes ...
分类:
其他好文 时间:
2014-07-08 16:27:42
阅读次数:
220
# @left part: [start, mid]
# @right part: (mid, end]
def merge(data, start, mid, end):
if mid < start or end < mid:
return 0
reverse = 0
'''
@ for start, it play as the start index of left par...
分类:
其他好文 时间:
2014-07-08 15:04:06
阅读次数:
204
题目如下:
Play on Words
Some of the secret doorscontain a very interesting word puzzle. The team of archaeologists has tosolve it to open that doors. Because there is no other way to open the doors,...
分类:
其他好文 时间:
2014-07-06 12:12:36
阅读次数:
221