摘要: 问题描述: Write a function: class Solution { public int solution(Tree T); } that, given a non-empty binary tree T consisting of N nodes, returns its heigh 阅读全文
posted @ 2016-11-22 08:06 znbee 阅读(510) 评论(0) 推荐(0) 编辑
摘要: 1. Install c/c++ compilation package.2. install openGL and freeGlut librarysudo apt-get install mesa-common-devsudo apt-get install freeglut3-dev3. te... 阅读全文
posted @ 2015-05-19 17:30 znbee 阅读(288) 评论(0) 推荐(1) 编辑
摘要: Level 1 - Process Validation1. maximum arrival countDefine the number of token instances the process will generate (or trigger)在一开始定义多少token将被处理2.Gate... 阅读全文
posted @ 2015-03-19 21:22 znbee 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 讲解scale 的好材料https://www.dashingd3js.com/d3js-scales 阅读全文
posted @ 2015-03-17 18:47 znbee 阅读(166) 评论(0) 推荐(0) 编辑
摘要: WCP 1- SequenceThis pattern is used to model dependencies between tasks so that one task cannot start before another is finished (serial execution)WCP... 阅读全文
posted @ 2015-03-02 03:14 znbee 阅读(212) 评论(0) 推荐(0) 编辑
摘要: list中可以添加任何对象,我可以给你举个例子:class Person{ .....}上面定义了一个Person类,下面看好如何使用ListPerson p1=new Person();Person p2=new Person();List list=new ArrayList();list.... 阅读全文
posted @ 2014-10-12 17:04 znbee 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 就是一个键值对应的集合HashMap a = new HashMap(); a.put("name", "abcdef"); // key是name,value是字符串abcdef System.out.println(a.get("name"));// 根据key取得其值并输出 List l... 阅读全文
posted @ 2014-10-12 17:01 znbee 阅读(1157) 评论(0) 推荐(0) 编辑
摘要: 这个不用要的那么详细,对于应用来说,比如举个例子: Map map = new HashMap();map.put("key","value");这样就存入了一对值,你可以理解key就是所对应的名字,而value就是值。map存值就类似于你往一个瓶子中放东西,而key就是标签,value就是其中放的... 阅读全文
posted @ 2014-10-12 00:46 znbee 阅读(166) 评论(0) 推荐(0) 编辑
摘要: s是遍历后赋值的变量,v是要遍历的list。可以通过以下语句进行测试: List v=new ArrayList(); v.add("one"); v.add("two"); for(String s:v){ System.out.println(s); }注意s要跟前面的类型匹配。来自... 阅读全文
posted @ 2014-10-11 15:30 znbee 阅读(458) 评论(0) 推荐(0) 编辑