首页 > 其他
OSChina 周一乱弹 —— 英雄救肉,才是真吃货!
一大清早小小编就看到这样一条动弹,顿时不能同意更多~ @Mallon:That‘s deep… 以后这就是小小编的人生信条了!要贯彻到底! 不过对于那些长期失眠的人来说就是另外一回事了 @ 孔小菜:如果做了亏心事真的会睡不...
分类:其他   时间:2015-09-14 07:11:01    收藏:0  评论:0  赞:0  阅读:275
Count Primes 解答
QuestionCount the number of prime numbers less than a non-negative number,n.Solution 1Naive way, to check each number one by one. If a number i is pri...
分类:其他   时间:2015-09-14 07:09:20    收藏:0  评论:0  赞:0  阅读:241
【Bower】
BowerBower:客户端库管理工具Day 1: Bower —— 管理你的客户端依赖关系bower解决js的依赖管理
分类:其他   时间:2015-09-14 07:08:50    收藏:0  评论:0  赞:0  阅读:227
Isomorphic Strings 解答
QuestionGiven two stringssandt, determine if they are isomorphic.Two strings are isomorphic if the characters inscan be replaced to gett.All occurrenc...
分类:其他   时间:2015-09-14 07:08:32    收藏:0  评论:0  赞:0  阅读:275
网络笔试题
网络笔试题
分类:其他   时间:2015-09-14 07:07:20    收藏:0  评论:0  赞:0  阅读:276
链表-单链表的各种操作
单链表的各种操作
分类:其他   时间:2015-09-14 07:05:20    收藏:0  评论:0  赞:0  阅读:214
Backtracking algorithm: rat in maze
Sept. 10, 2015 Study again the back tracking algorithm using recursive solution, rat in maze, a classical problem. Made a few of mistakes through the ...
分类:其他   时间:2015-09-14 07:04:50    收藏:0  评论:0  赞:0  阅读:297
Morris post order traversal algorithm
Sept. 5, 2015花时间把代码读明白,比光看书强.动手写代码,改代码,兴趣是最好的老师. 多记几个例子, 增加情趣.举个例子关于中序遍历, 4 / \ 2 6 / \ / \ 1 3 5 7easy way to travel is to remem...
分类:其他   时间:2015-09-14 07:02:40    收藏:0  评论:0  赞:0  阅读:234
Leetcode, construct binary tree from inorder and post order traversal
Sept. 13, 2015Spent more than a few hours to work on the leetcode problem, and my favorite blogs about this problems:1.http://siddontang.gitbooks.io/l...
分类:其他   时间:2015-09-14 07:02:33    收藏:0  评论:0  赞:0  阅读:141
Leetcode Same Tree
Given two binary trees, write a function to check if they are equal or not.Two binary trees are considered equal if they are structurally identical an...
分类:其他   时间:2015-09-14 07:02:10    收藏:0  评论:0  赞:0  阅读:176
Search Insert Position 解答
QuestionGiven 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 insert...
分类:其他   时间:2015-09-14 07:02:00    收藏:0  评论:0  赞:0  阅读:283
整理一些笔试题(要求手写代码的)
整理一些笔试题(要求手写代码的)
分类:其他   时间:2015-09-14 07:01:20    收藏:0  评论:0  赞:0  阅读:297
Node与Express开发 坑1
添加app.set('views', __dirname + '/views')修改app.use(express.static(__dirname + '/public'));express-handlebars.js源代码修改layoutsDir : '../usr/local/lib/vi.....
分类:其他   时间:2015-09-14 07:01:00    收藏:0  评论:0  赞:0  阅读:149
Leetcode Invert Binary Tree
Invert a binary tree. 4 / \ 2 7 / \ / \1 3 6 9to 4 / \ 7 2 / \ / \9 6 3 1解题思路:方法一: recursion 交换当前左右节点,并直接调用递归即可方...
分类:其他   时间:2015-09-14 07:00:30    收藏:0  评论:0  赞:0  阅读:215
[LeetCode#250] Count Univalue Subtrees
Problem:Given a binary tree, count the number of uni-value subtrees.A Uni-value subtree means all nodes of the subtree have the same value.For example...
分类:其他   时间:2015-09-14 07:00:10    收藏:0  评论:0  赞:0  阅读:2378
LeetCode (6): ZigZag Conversion
【题目】LeetCode(6): ZigZag ConversionURL: https://leetcode.com/problems/zigzag-conversion/【描述】The string"PAYPALISHIRING"is written in a zigzag pattern on...
分类:其他   时间:2015-09-14 06:59:30    收藏:0  评论:0  赞:0  阅读:289
百度云推送初尝试
今晚(不对,具体应该说是昨晚,哈哈),给师弟师妹开了个分享会,然后打算把他们分到各个师兄那边,让师兄带着他们去学。然后,师妹跑过来问我说,我这边有什么优势,想了想,这个得怎么说啊。然后,就糊弄她说:没优势。。(注孤身的节奏啊),然后师妹说她要跑去另一个师兄那边,我问她为什么,然后她跟我说:那边可.....
分类:其他   时间:2015-09-14 06:59:20    收藏:0  评论:0  赞:0  阅读:212
[LeetCode#267] Palindrome Permutation II
Problem:Given a strings, return all the palindromic permutations (without duplicates) of it. Return an empty list if no palindromic permutation could ...
分类:其他   时间:2015-09-14 06:58:40    收藏:0  评论:0  赞:0  阅读:1239
[Leetcode]unique binary search trees
https://leetcode.com/problems/unique-binary-search-trees/动归2015/9/14上午1:37:45分析:二叉搜索树,节点数为N,那么就有根节点为1时,左侧为0个节点,右侧有n-1个节点,这种情况有F(0)*F(n-1);根节点为2时,左侧为1个...
分类:其他   时间:2015-09-14 06:58:00    收藏:0  评论:0  赞:0  阅读:246
Resin中增加一个虚拟目录的方法
打开resin.config ? 找到到<host>标签,增加一行: ? <web-app id="/oa" root-directory="webapps/oa"/> ? 这里会增加一个oa虚拟目录,目标路径在webapps/oa下面。
分类:其他   时间:2015-09-14 02:05:25    收藏:0  评论:0  赞:0  阅读:308
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!