码迷,mamicode.com
首页 >  
搜索关键字:head    ( 28286个结果
Linux 内核链表使用举例
链表数据结构的定义很简洁: struct list_head { struct list_head *next, *prev; }; list_head结构包含两个指向list_head结构的指针prev和next,该内核链表具备双链表功能,通常它都组织成双循环链表,这里的list_head没有数据域。在Linux内核链表中,不是在链表结构中包含数据,而是在数据结构中包含链表节点。...
分类:系统相关   时间:2014-06-22 21:17:54    阅读次数:312
《软件调试的艺术》笔记--检查和设置变量
1.使用print命令查看变量值 使用print命令(简写为p)可以查看变量值。 使用如下的程序1进行测试。 #include struct node{ int index; struct node* next; }; int main(void) { struct node head; head.index = 1;...
分类:其他好文   时间:2014-06-22 20:53:08    阅读次数:301
【Leetcode】Remove Nth Node From End of List
Given a linked list, remove the nth node from the end of list and return its head. For example, Given linked list: 1->2->3->4->5, and n = 2. After removing the second node from the end, the...
分类:其他好文   时间:2014-06-22 20:02:46    阅读次数:182
javascript基础
1.document.write(""); 输出语句2.JS中的注释为//3.传统的HTML文档顺序是:document->html->(head,body)4.一个浏览器窗口中的DOM顺序是:window->(navigator,screen,history,location,document)5...
分类:编程语言   时间:2014-06-22 12:26:07    阅读次数:214
三分钟教你学Git (四)之紧急救助
如果你不小心git reset --hard HEAD^ 然后这个commit又没有在别的git仓库中,怎么办?是不是这次修改就丢了呢? git为我们每次都历史都保留了reference log 如下: $ git commit -A -m "hongchangfirst commit" 你现在看git的历史记录,你可以看到两次提交: $ git log * d1f3fg...
分类:其他好文   时间:2014-06-22 07:45:23    阅读次数:314
js 验证年龄 姓名
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Strict//EN"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html><head><metahttp-equiv="content-type"content="text/html;charset=utf-8"/><scriptsrc="js.js"type="text/javascript"language="ja..
分类:Web程序   时间:2014-06-21 19:40:47    阅读次数:238
js时钟
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Strict//EN"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <metahttp-equiv="content-type"content="text/html;charset=utf-8"/> <scriptsrc="js.js"type="text/javascript"lan..
分类:Web程序   时间:2014-06-21 19:35:19    阅读次数:321
用js 写计算器
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Strict//EN"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html> <head> <metahttp-equiv="content-type"content="text/html;charset=utf-8"/> <scriptsrc="js.js"type="text/javascript"languag..
分类:Web程序   时间:2014-06-21 19:34:01    阅读次数:438
js 动态修改属性值 动态修改图片,字等
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Strict//EN"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html> <head> <metahttp-equiv="content-type"content="text/html;charset=utf-8"/> <scriptsrc="js.js"type="text/javascript"languag..
分类:Web程序   时间:2014-06-21 19:01:14    阅读次数:222
控件包含代码块(即 ),因此无法修改控件集合。
第一种:在使用主题的时候出现 控件包含代码块(即 ),因此无法修改控件集合错误,原来错误的原因是:控件包含代码块(即 ),因此无法修改控件集合。 将这些代码去掉,相应的功能在代码中实现即可。造成这个错误的原因是:在里面,使用了类似这样的代码,把Head中使用的的脚本放到body中,就OK了.Sour...
分类:其他好文   时间:2014-06-21 15:43:42    阅读次数:191
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!