转载:http://www.kernelchina.org/node/1050linux的list实现之中有如下东东:#define
list_for_each(pos, head) \ for (pos = (head)->next; prefetch(pos->next),
pos != (h....
分类:
系统相关 时间:
2014-05-09 10:04:38
阅读次数:
323
1.安装基于ubuntu12.04LTS版本的麒麟版本,曾尝试9.10但是源迟迟弄不好,费劲无比,还是算了,用12.04LTS版本好了。2.安装系统之后设置root密码:sudo
passwd root3.更改源cp /etc/apt/sources.list /etc/apt/sources.li...
分类:
其他好文 时间:
2014-05-09 09:43:24
阅读次数:
329
UE是一款很顺手的文件编辑软件。打开文本,都会有个标签。根据个人喜好,我喜欢标签都展开,方便快速选取指定文本。设置如下:高级>配置>应用程序布局>可停靠窗口>类型这下面有三种可单选单行-下拉文件list(默认项)如下图1,图2 图1 图2复线,这种格式比较方便快速选择指定文本,如图3,图4 图3 图...
分类:
其他好文 时间:
2014-05-09 09:42:53
阅读次数:
380
一点小错,两次过,基本思想是先比较头元素,哪个小就在哪个list的基础上插入,需要考虑两种不同的结束方式 1
/** 2 * Definition for singly-linked list. 3 * public class ListNode { 4 * int
val; 5 *...
分类:
其他好文 时间:
2014-05-09 09:21:59
阅读次数:
273
两次通过,考虑漏了一种情况:input: {1}, 1,
这种情况的output是null,应特殊处理; 同时,另外一个问题是:当要被删除的元素是最后一个元素的时候,我的方法又只能从头找起,不够简洁 1 /** 2 *
Definition for singly-linked list. 3 *.....
分类:
其他好文 时间:
2014-05-09 08:57:45
阅读次数:
278
linux内核中的list太好用了,可惜VC编译器不支持
typeof关键字,将linux内核中的list直接移植过来不能用修改所有与typeof相关的代码后,终于可以勉强在VC下运行起来了,但是还不完美,list_for_each_entry和list_for_each_entry_safe需要增...
分类:
其他好文 时间:
2014-05-09 08:57:19
阅读次数:
603
ArrayList概述类概述 ArrayList是List
接口的大小可变数组的实现。实现了所有可选列表操作,并允许包括 null 在内的所有元素。每个 ArrayList
实例都有一个容量(capacity)。该容量是指用来存储列表元素的数组的大小。它大于或等于列表的大小。随着向 Arra...
分类:
编程语言 时间:
2014-05-09 08:46:44
阅读次数:
415
服务器环境:安装vim/etc/apt/sources.list.d/mariadb.list#添加以下两句
debhttp://mirror.yongbok.net/mariadb/repo/5.5/ubuntuprecisemain
deb-srchttp://mirror.yongbok.net/mariadb/repo/5.5/ubuntuprecisemain
apt-keyadv--recv-keys--keyserverkeyserver.ubuntu.com0xcbc..
分类:
数据库 时间:
2014-05-09 06:50:15
阅读次数:
538
public ActionResult GetAllList() { var list =
db.Movies.ToList(); return Json(list, JsonRequestBehavior.AllowGet); //return
Content(a); }@section Sc.....
分类:
其他好文 时间:
2014-05-09 05:52:01
阅读次数:
247
1. Write a procedure count-list to count the
number of elements in a list1 (defun count-list (numbers)2 (if (null numbers) 03
(+ 1 (co...
分类:
其他好文 时间:
2014-05-09 05:41:41
阅读次数:
307