码迷,mamicode.com
首页 >  
搜索关键字:head first    ( 41556个结果
射频识别技术漫谈(6)——通讯协议概述
通讯协议是通讯的双方或多方在交流时遵守的规矩,包括谁先发起通讯,先交流什么,后交流什么,一方如何问,另一方如何答等。在这里通迅的双方指的是读写器和卡片。首先是谁先发起通讯,很显然有两种,读写器先发言和卡片先发言。前一种叫Reader Talk First,简称为RTF;后一种叫Tag Talk Fi...
分类:其他好文   时间:2014-05-08 21:26:50    阅读次数:246
Linux中变量$#,$@,$0,$1,$2,$*,$$,$?的含义
我们先写一个简单的脚本,执行以后再解释各个变量的意义# touch variable# vi variable脚本内容如下:#!/bin/shecho "number:$#"echo "scname:$0"echo "first :$1"echo "second:$2"echo "argume:$@...
分类:系统相关   时间:2014-05-08 21:16:46    阅读次数:480
[转]MVC实用架构设计(三)——EF-Code First(3):使用T4模板生成相似代码
本文转自:http://www.cnblogs.com/guomingfeng/p/mvc-ef-t4.html〇、目录一、前言二、工具准备三、T4代码生成预热 (一) 单文件生成:HelloWorld.cs (二) 多文件生成四、生成数据层实体相关相似代码 (一) 生成准备 (二) 生成实...
分类:Web程序   时间:2014-05-07 20:21:16    阅读次数:775
jquey实例之animate
<!doctypehtml> <html> <head> <metacharset="utf-8"/> <scripttype="text/javascript"src="jquery.js"></script> </head> <body> <imgsrc="8fbf0884jw1drfmvfrhrhj.jpg"width="300"height="300"/> <buttonid="btn1..
分类:其他好文   时间:2014-05-05 12:19:01    阅读次数:300
Linux内核之旅 链表实现
1 #include "stdio.h" 2 #include "stdlib.h" 3 4 struct list_head{ 5 struct list_head *prev; 6 struct list_head *next; 7 }; 8 9 struct task{1...
分类:系统相关   时间:2014-05-05 10:10:11    阅读次数:462
【LeetCode】Jump Game
Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your maximu...
分类:其他好文   时间:2014-05-05 10:05:58    阅读次数:300
《linux 内核完全剖析》 void free_page() 分析
#define PAGE_SIZE 4096 /* these are not to be changed without changing head.s etc */ #define LOW_MEM 0x100000 extern unsigned long HIGH_MEMORY; #define PAGING_MEMORY (15*1024*1024) #define PAGING_PAG...
分类:系统相关   时间:2014-05-04 18:15:51    阅读次数:441
firefox is already running..在linux中使用firfox出现的问题
中文版显示:Firefox 已经在运行,但是没有响应。如要打开新窗口,您必须先关闭该 Firefox 进程,或者重新启动您的系统。 英文版显示:Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or ...
分类:系统相关   时间:2014-05-04 17:44:21    阅读次数:647
Insertion Sort List
Sort a linked list using insertion sort.思路:使用插入排序来对链表进行排序。只要注意链表的边界问题,其实关键就是交换链表的值,对链表指针是没有什么影响的。接下来说下具体步骤:1.判断head或者head->next是否为空;2.循环遍历,初始条件pCur=he...
分类:其他好文   时间:2014-05-04 10:01:57    阅读次数:242
LA 4513 Stammering Aliens 字符串hash
字符串hash模板, 本题是求,给定字符串s中至少出现m次的最长字符串长度,及此时起始位置的最大值 LA 4513 Stammering Aliens //#pragma warning (disable: 4786) //#pragma comment (linker, "/STACK:16777216") //HEAD #include #include #include #inc...
分类:其他好文   时间:2014-05-04 09:52:37    阅读次数:304
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!