码迷,mamicode.com
首页 >  
搜索关键字:level    ( 6507个结果
Install latest Eclipse IDE in Ubuntu 14.04, 13.10
Eclipse Kepler?4.3.2 SR2?is the most recent release from the Eclipse top-level project. It contains what you need to build applications based on Eclipse technology, including integrated developm...
分类:系统相关   时间:2014-10-08 15:10:55    阅读次数:457
Socket编程基础——Socket选项
有些情况下,我们需要对Socket行为和属性进一步控制,例如修改缓冲区大小,查看Socket状态,这就需要设置/获取Socket选项。1、获取Socket选项int getsockopt(SOCKET s,int level,int optname,void *optval,int *optlen)...
分类:其他好文   时间:2014-10-07 13:43:43    阅读次数:249
leetcode - Binary Tree Zigzag Level Order Traversal
Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right to left for the next level and alternate between). For example: Given binary ...
分类:其他好文   时间:2014-10-06 16:46:00    阅读次数:165
Binary Tree Level Order Traversal II
Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie, from left to right, level by level from leaf to root). For example: Given binary tree {3,9,20,#,#,15,7}, ...
分类:其他好文   时间:2014-10-05 23:07:59    阅读次数:214
ISA TEST Writeup
刚出来的hack小游戏,很简单,现在才7关,算是入门级的,没事可以玩一下。 LEVEL 1 仔细观察页面,入侵的第一步是收集一切可能产生价值的信息 ps:最好使用谷歌浏览器或火狐浏览器 将找到的密码输入到下面的对话框中 密码:  右键查看源码 LEVEL 1     !!!提示!!! ...
分类:其他好文   时间:2014-10-05 13:34:08    阅读次数:248
uplevel
uplevel - Execute a script in a different stack framesuppose that procedure a was invoked from top-level, and that it called b, and that b called c. S...
分类:其他好文   时间:2014-10-04 13:49:46    阅读次数:186
javascript - 二叉树
都是些简单的东西,所以直接上代码了。/** * Created by huangjacky on 14-10-3. */function Node(element, left, right) { this.element = element; this.level = 0; thi...
分类:编程语言   时间:2014-10-03 22:21:25    阅读次数:313
leetcode - Binary Tree Level Order Traversal II
Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie, from left to right, level by level from leaf to root). For example: Given binary tree {3,9,20,#,#,15,7}, ...
分类:其他好文   时间:2014-10-03 19:41:45    阅读次数:189
AWS CSA Associate Level 考试心得
经过4个多月的学习,豆子成功的通过了AWSCSA的AL级别认证。证书号是AWS-ASA-3749,最后这个数字是指我是第3749号拿到这个认证的,还记的半年前初次听说这个认证的时候,号码排到2700+,看来半年来参加AWS考试的也并不多嘛。考试本身80分钟,55道选择题,豆子40分钟就做完了,时..
分类:其他好文   时间:2014-10-03 16:33:25    阅读次数:255
用java面向对象的思想实现的汉诺塔问题
package hanoi.com;public class Disc { private String name; private int level; public Disc(){ name = "disc"; level = 0; } ...
分类:编程语言   时间:2014-10-03 14:42:04    阅读次数:287
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!