码迷,mamicode.com
首页 >  
搜索关键字:sed head tail    ( 45574个结果
Media Queries详解
Media Queries直译过来就是“媒体查询”,在我们平时的Web页面中head部分常看到这样的一段代码: 或者这样的形式: 不知道大家留意没有,其中两种方式引入CSS样式都有一个共同的属性“media”,而这个“media”就是用来指定特定的媒体类型,在HTML4和CSS2中充许你使用“m.....
分类:其他好文   时间:2014-09-29 14:54:41    阅读次数:201
单链表大整数加法
单链表大整数加法,节点是char型。First List: head->1->8->9Second List: head->9->8->1Result List: head->1->1->7->0实现了单链表(单链表类模板),现在使用单链表实现大整数加法 1 #include "stdaf...
分类:其他好文   时间:2014-09-29 12:56:00    阅读次数:272
[LeetCode]Swap Nodes in Pairs 成对交换
Given a linked list, swap every two adjacent nodes and return its head. For example, Given 1->2->3->4, you should return the list as 2->1->4->3. Your algorithm should use only constant space. Y...
分类:其他好文   时间:2014-09-29 01:40:57    阅读次数:297
js弹出对话框
<html> <head> <metahttp-equiv="Content-Type"content="text/html;charset=gb2312"/> <title>js弹出对话框</title> <scriptlanguage="javascript"> functionalter1() { alert("我敢保证,你现在用的是演示一"); } functionalert2() { //..
分类:Web程序   时间:2014-09-28 18:09:38    阅读次数:256
【PHP分享】Windows tail工具分享
作者:zhanhailiang 日期:2014.09.28 在Linux下可以使用tail -f工具实时查看输出的日志。最近切换到本地Windows开发环境,顿时有点不爽。百度了下,终于找到tail的Windows的实现版本。 1. 下载tail,解压后将tail.exe复制到Path路径下,以笔者为例,C:\Windows\System32; 2. 测试如下: Microso...
分类:Windows程序   时间:2014-09-28 17:09:43    阅读次数:266
HTML meta标签详解
meta主要为分HTTP标头信息(HTTP-EQUIV)和页面描述信息(NAME)。标头信息包括文档类型、字符集、语言等浏览器正确显示网页的信息及处理动作;网页描述如内容的关键字、摘要、作者和定义robots行为等,为搜索引擎索引提供信息。meta标签在head中定义,主要参数如下:http-equiv:将..
分类:Web程序   时间:2014-09-28 14:46:02    阅读次数:195
leetcode - Swap Nodes in Pairs
Given a linked list, swap every two adjacent nodes and return its head. For example, Given 1->2->3->4, you should return the list as 2->1->4->3. Your algorithm should use only constant space. Y...
分类:其他好文   时间:2014-09-28 14:33:56    阅读次数:178
在CentOS7上安装Oracle12C(字符界面)
1.硬件和系统配置 CPU 双核 内存 1480M swap 4G /u01 16G 核心版本 3.10.0-123.el7.x86_642.配置系统和安装所需软件包 2.1 关闭selinux sed -i 's/SELINUX=enforcing/SELINUX...
分类:数据库   时间:2014-09-28 02:21:10    阅读次数:6602
asdfdfassafd
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Frameset//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> <htmlxmlns="http://www.w3.org/1999/xhtml"> <head> <metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/> <title&..
分类:其他好文   时间:2014-09-28 02:16:31    阅读次数:189
Regular Expression Basic
1. Basic Regular Expression a. "^" matching the head of a line. "^" must be the first character in a regular expression ,else it only a common ch...
分类:其他好文   时间:2014-09-27 19:08:30    阅读次数:160
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!