Write a function to delete a node (except the tail) in a singly linked list, given only access to that node.
Supposed the linked list is 1 -> 2 -> 3 -> 4 and you are given the third node
with val...
分类:
其他好文 时间:
2015-08-09 09:33:13
阅读次数:
152
轉載自:http://kb.cnblogs.com/page/73901/流程 当资源第一次被访问的时候,HTTP头部如下(Request-Line) GET /a.html HTTP/1.1Host 127.0.0.1User-Agent Mozilla/5.0 (X11; U; Lin...
分类:
Web程序 时间:
2015-08-07 09:22:04
阅读次数:
148
CMake是一个跨平台的程序构建工具,比如起自己编写Makefile方便很多。介绍:http://baike.baidu.com/view/1126160.htm本文件不介绍CMake的基本语法,下面是篇不错的入门教程:http://www.ibm.com/developerworks/cn/lin...
分类:
其他好文 时间:
2015-08-05 06:36:10
阅读次数:
231
leetcode原文引用:
How would you print just the 10th line of a file?
For example, assume that file.txt has the following content:
Line 1
Line 2
Line 3
Line 4
Line 5
Line 6
Line 7
Line 8
Line 9
Lin...
分类:
数据库 时间:
2015-08-05 01:10:15
阅读次数:
163
PetProblem DescriptionOne day, Lin Ji wake up in the morning and found that his pethamster escaped. He searched in the room but didn...
分类:
其他好文 时间:
2015-08-05 00:57:38
阅读次数:
119
最近在搞一个shell脚本启动jar文件个关闭jar文件的东东。搞得我都蛋疼了。今天晚上终于弄好了话说,小弟的linux只是刚入门,经过各方查资料终于搞定了。话不多说,下面开始上小弟写的shell脚本上面是小弟写的shell脚本。写的不好请见谅。首先遇到的第一个坑我在window下写的 然后道lin...
分类:
编程语言 时间:
2015-08-05 00:41:34
阅读次数:
147
Pet
Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1737 Accepted Submission(s): 835
Problem Description
One day, Lin Ji wake up in ...
分类:
其他好文 时间:
2015-08-04 19:18:35
阅读次数:
104
manager\includes\languages\english.php //注意 是后台的语言包define('BOX_CONFIGURATION_Lin_STORE', 'TDKcss_setup');-----------------admin_pages,configuration_gr...
分类:
其他好文 时间:
2015-08-04 13:23:52
阅读次数:
676
线程的那些事
前言:这篇文章主要小结下linux下多线程的知识点,并且有一些多线程编程中的拓展概念。以及c语言编写线程池的思路linux线程简介
线程的私有数据和公有数据
线程的上下文切换
创建线程
线程终止
互斥量
条件变量
多线程概念简单拓展
竟态条件
并发与并行
同步与互斥
volatile
CAS(compare and swap)
指令重排和内存屏障
c语言实现线程池思想
lin...
分类:
编程语言 时间:
2015-08-04 11:29:09
阅读次数:
212
//_DataStructure_C_Impl:链栈
#include
#include
typedef char DataType;
typedef struct node{
DataType data;
struct node *next;
}LStackNode,*LinkStack;
//将链栈初始化为空。动态生成头结点,并将头结点的指针域置为空
void InitStack(Lin...
分类:
其他好文 时间:
2015-08-04 00:41:11
阅读次数:
98