控制worker的移动,推动箱子到目标位置。Point.java(点,用以计算人当前的位置)package
edu.pushbox.util;public class Point { public int row; public int column; public
Point(i...
分类:
其他好文 时间:
2014-05-16 04:26:54
阅读次数:
434
集合基础知识——CollectionJava中集合框架由常用的Collection接口和Map接口组成,而Collection接口又有两个子接口,是List接口和Set接口,常用的集合框架由这三个类组成。List接口的功能方法List的使用最为简单,创建集合,通过add方法添加元素,get方法获取元...
分类:
编程语言 时间:
2014-05-16 04:23:01
阅读次数:
363
例子1:(具体参照drp中的flow_card_add.jsp) cell0 cell1
cell2 例子2: /news.do?method=add" method="post" enctype="multipart/form-data">
新闻标题 ...
分类:
Web程序 时间:
2014-05-16 03:57:52
阅读次数:
442
本文内容取材于http://blog.csdn.net/haizimin/article/details/7734184以OpenCV安装到如下目录为例:
C:\Program Files\OpenCV(在安装时选择"将\OpenCV\bin加入系统变量Add\OpenCV\bin to the s...
分类:
其他好文 时间:
2014-05-16 03:52:28
阅读次数:
234
List listGroup = sysGroupBll.Where(o => o.IsSb
== true, o => o.Id).ToList(); List items = new List(); foreach (var group in
listGroup) { items.Add(new...
分类:
Web程序 时间:
2014-05-16 03:30:39
阅读次数:
401
一般都用GDI实现:void
CXiangpijinView::OnMouseMove(UINT nFlags, CPoint point) { // TODO: Add your
message handler code here and/or call default CVi...
分类:
其他好文 时间:
2014-05-15 21:04:55
阅读次数:
330
(1)myeclipse→help→Myeclipse configuration
center:点击sofeware选项卡,在Browes Software 下有一个输入框,点击add site按钮:Name输入
Abator,URL输入http://ibatis.apache.org/tools...
分类:
系统相关 时间:
2014-05-15 18:04:50
阅读次数:
437
Given two binary strings, return their sum
(also a binary string).For example, a = "11" b = "1" Return "100".string
的操作,短string补位。两个“0”会输出一个“00”,要特殊处理...
分类:
其他好文 时间:
2014-05-15 17:47:57
阅读次数:
283
题意:给定两个代表数字的链表,每个节点里存放一个digit,数字是逆方向的,将这两个链表相加起来
思路:
1.i, j遍历l1,l2至最长,短的补零
2..设置一个进位变量c, 第i次遍历 l1,l2,c的和除以10进位,mod10留在这一位
3.出循环后还要检查是不是还有进位
复杂度:O(m+n), 空间O(m+n)...
分类:
其他好文 时间:
2014-05-15 13:38:03
阅读次数:
258
题意:给定两个二进制字符串,返回它们的和
思路:
1.按最长的循环,短的前面补零
2.因为变量少,不用考虑节省空间,定义为int最行了
3.用二进制可能会快一点。不过实现会麻烦一些
复杂度:时间O(m+n),空间O(m+n)...
分类:
其他好文 时间:
2014-05-15 13:17:22
阅读次数:
222