持续更新中...1、SNH48
红白歌会(上海大舞台2014年1月18日)。2、Juice=Juice 6ショットチェキ撮影会(TFMホール2014年3月8日)。3、モーニング娘。’14
55thシングル 『笑顔の君は太陽さ/君の代わりは居やしない/What is LOVE?』 発売記念 グループチ...
分类:
其他好文 时间:
2014-06-07 07:48:58
阅读次数:
184
Contents1 Overview1.1 Who developed HttpOnly?
When?1.2 What is HttpOnly?1.3 Mitigating the Most Common XSS attack using
HttpOnly1.3.1 Using Java to Se...
分类:
其他好文 时间:
2014-06-06 15:04:08
阅读次数:
805
This is the beginning of my plan. Or this is a
manifesto, a motivation for me. Note what I read, good or bad, old or new, Tao
or method. Maybe sometim...
分类:
其他好文 时间:
2014-06-05 15:57:51
阅读次数:
373
Follow up for problem "Populating Next Right
Pointers in Each Node".What if the given tree could be any binary tree? Would
your previous solution stil...
分类:
其他好文 时间:
2014-06-05 13:26:37
阅读次数:
335
【题目】
Follow up for "Remove Duplicates":
What if duplicates are allowed at most twice?
For example,
Given sorted array A = [1,1,1,2,2,3],
Your function should return length = 5, and A is now [1,1,2,2,3].
【题意】
给定一个有序数组,给数组去重,和Remove Duplicates from...
分类:
其他好文 时间:
2014-06-03 05:36:24
阅读次数:
219
【题目】
Follow up for "Search in Rotated Sorted Array":
What if duplicates are allowed?
Would this affect the run-time complexity? How and why?
Write a function to determine if a given target is in the array.
【题意】
在“Search in Rotated Sorted Array”的基...
分类:
其他好文 时间:
2014-06-03 01:55:38
阅读次数:
173
BY
Jeff Haden @jeff_haden
Sometimes the route to happiness depends more on what you don't do....
分类:
移动开发 时间:
2014-06-02 23:17:28
阅读次数:
525
前两篇在这里:Android上使用native
IO最近工作中的问题笔记最近遇到的问题是,java.io.IOException: FAT
FullStackOverflow的结果:http://stackoverflow.com/questions/18906055/what-causes-job...
分类:
移动开发 时间:
2014-06-02 22:27:49
阅读次数:
628
【题目】
Two elements of a binary search tree (BST) are swapped by mistake.
Recover the tree without changing its structure.
Note:
A solution using O(n) space is pretty straight forward. Could you devise a constant space solution?
confused what "{1,#,2,3}" ...
分类:
其他好文 时间:
2014-06-02 10:38:17
阅读次数:
246
【题目】
Given a binary tree, return the inorder traversal of its nodes' values.
For example:
Given binary tree {1,#,2,3},
1
2
/
3
return [1,3,2].
Note: Recursive solution is trivial, could you do it iteratively?
confused what "{1,#,2...
分类:
其他好文 时间:
2014-06-01 13:01:23
阅读次数:
279