using System;using System.Collections.Generic;using System.Linq;using System.Web;namespace {interface FoodFactory{ Burger CreateBurger(); Ch...
分类:
其他好文 时间:
2016-01-03 20:59:37
阅读次数:
144
具体代码:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace M_K{class Program{static...
分类:
其他好文 时间:
2016-01-03 21:00:44
阅读次数:
145
创建ros的程序包(原创博文,转载请标明出处--周学伟) 1.一个catkin程序包由什么组成? 一个程序包要想称为catkin程序包必须符合以下要求:该程序包必须包含catkin compliant package.xml文件这个package.xml文件提供有关程序包的元信息。 程序包必须包.....
分类:
其他好文 时间:
2016-01-03 21:00:22
阅读次数:
350
光线追踪是图形学领域里最为著名的一种技术,其中首要的一步是视点(相机,眼睛)穿过像素中心,发射一条射线,也就是主光线(次级光线指的是从物体表面反射或折射等发出的光线)。这一步看起来比较简单,但仍然涉及到一些细节和概念需要厘清。我系统的学习这些东西是从renderman规范开始的,看的第一本书是adv...
分类:
其他好文 时间:
2016-01-03 20:59:12
阅读次数:
170
类总括: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespa...
分类:
其他好文 时间:
2016-01-03 20:58:50
阅读次数:
156
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace KFCandM{ class Program ...
分类:
其他好文 时间:
2016-01-03 21:00:30
阅读次数:
180
1.Given an array where elements are sorted in ascending order, convert it to a height balanced BST.2.Given a singly linked list where elements are sor...
分类:
其他好文 时间:
2016-01-03 20:58:24
阅读次数:
106
实验四、主存空间的分配和回收模拟物联网工程 陈梓帆 201306104108一、实验目的为了合理地分配和使用这些存储空间,当用户提出申请主存储器空间时,存储管理必须根据申请者的要求,按一定的策略分析主存空间和使用情况,找出足够的空闲区域给申请者。当作业撤离归还主存资源时,则存储管理要收回占用的主存....
分类:
其他好文 时间:
2016-01-03 20:59:47
阅读次数:
241
CVPR15:Person Count Localization in Videos from Noisy Foreground and Detections paper主要的contribution是定义了person count localization及其周边,不过虽然之前提过的person....
分类:
其他好文 时间:
2016-01-03 20:57:24
阅读次数:
130
相关代码 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespa...
分类:
其他好文 时间:
2016-01-03 20:59:05
阅读次数:
160
电话号码=[校内电话号码|校外电话号码]校内电话号码=非零数字+3位数字校外电话号码=[本市号码|外地号码]本市号码=数字零+8位数字外地号码=数字零+3位数字+8位数字非零数字=[1|2|3|4|5|6|7|8|9]数字零=03位数字=3{数字}38位数字=非零数字+7位数字7位数字=7{数字}....
分类:
其他好文 时间:
2016-01-03 20:58:00
阅读次数:
116
一、实现效果实现图片的自动轮播 二、实现代码storyboard中布局代码: 1 #import "ViewController.h" 2 #define HMImageCount 5 3 @interface ViewController () 4 @property (weak, ...
分类:
移动开发 时间:
2016-01-03 20:56:11
阅读次数:
1120
第六章 快速响应的用户界面本章开篇介绍了浏览器UI线程的概念,我也突然想到一个小例子,这是写css3动画的朋友都经常会碰到的一个问题: Title click me如代码所示,我们希望点击按钮的时候,div能通过移除class瞬间变回50px,然后再给其加回class来触发动画(...
分类:
编程语言 时间:
2016-01-03 20:58:33
阅读次数:
389
public static List> splitList(List list, int pageSize) { List> listArray = new ArrayList>(); ArrayList al = new ArrayList(); for(T x : list){ al.ad...
分类:
编程语言 时间:
2016-01-03 20:56:10
阅读次数:
764
日。。。。 一开始没有把他倒过来然后一直乱一直乱,没办法了就重新写,并且把他倒过来,然后就和做过的差不多了。。。----------------------------------------------------------------------------------------#inclu...
分类:
其他好文 时间:
2016-01-03 20:58:29
阅读次数:
144
一、缩放1.简单说明:有些时候,我们可能要对某些内容进行手势缩放,如下图所示UIScrollView不仅能滚动显示大量内容,还能对其内容进行缩放处理。也就是说,要完成缩放功能的话,只需要将需要缩放的内容添加到UIScrollView中2.缩放原理当用户在UIScrollView身上使用捏合手势时,U...
分类:
移动开发 时间:
2016-01-03 20:57:40
阅读次数:
215
最近在写一个lua的MongoDB模块。MongoDB版本3.2,lua则是5.3.1。底层以C++来写,再把函数暴露给lua调用。但是在lua中打印结果时,发现了些奇怪的现象。首先,数据库中的内容:> db.item.find(){ "_id" : 2001, "amount" : 999 }.....
分类:
数据库 时间:
2016-01-03 20:56:18
阅读次数:
171