上篇中的无名管道通信是父子进程之间的通信,限定了进程之间的通信,从而就有了有名管道,它可以使不同进程之间进行通信,有名管道可以通过指定路径名来指出,兵长文件系统中可见。进程通过文件IO来操作有名管道,有名管道遵从先进先出的原则,但是不支持lseek函数。
1)int mkfifo(const char *pthname,mode_t mode)创建有名管道,
2)在内核中创建对象,但没有打开读...
分类:
系统服务 时间:
2014-12-01 22:32:53
收藏:
0 评论:
0 赞:
0 阅读:
375
问题描述:
Given a linked list, reverse the nodes of a linked list
k at a time and return its modified list.
If the number of nodes is not a multiple of k then left-out nodes in the end should remain ...
分类:
其他 时间:
2014-12-01 22:32:43
收藏:
0 评论:
0 赞:
0 阅读:
333
Given numRows, generate the first numRows of Pascal's triangle.
For example, given numRows = 5,
Return
[
[1],
[1,1],
[1,2,1],
[1,3,3,1],
[1,4,6,4,1]
]
迭代 非递归版本
public class Solut...
分类:
其他 时间:
2014-12-01 22:32:33
收藏:
0 评论:
0 赞:
0 阅读:
344
一、物理层
1.中继器
中继器是最简单的网络互联设备,连接同一个网络的两个或多个网段。完成物理信号的复 制、调整和放大功能,以此从而增加信号传输的距离。中继器只将任何电缆段上的数据发送到另一段电缆上,并不管数据中是否有错误数据或不适于网段的数据。
2.集线器
集线器也称HUB,属于共享型设备,接收数据广播发出,在局域网内一般都是 星型连接拓扑结构,每台工作站都连接到集线器上。由于集...
分类:
其他 时间:
2014-12-01 22:32:23
收藏:
0 评论:
0 赞:
0 阅读:
360
Find Minimum in Rotated Sorted Array...
分类:
其他 时间:
2014-12-01 22:32:13
收藏:
0 评论:
0 赞:
0 阅读:
332
发布后的内容高度缓慢变大,透明度从0到100
js代码:
window.onload=function(){
var oTxt=document.getElementById('txts');
var oBtn=document.getElementById('btn');
var oUl=document.getElementById('ul1');
var oLi=oUl.get...
分类:
编程语言 时间:
2014-12-01 22:32:03
收藏:
0 评论:
0 赞:
0 阅读:
353
CD
You have a long drive by car ahead. You have a tape recorder, but unfortunately your best music is on CDs. You need to have it on tapes so the problem to solve is: you have a tape N m...
分类:
其他 时间:
2014-12-01 22:31:53
收藏:
0 评论:
0 赞:
0 阅读:
349
队花的烦恼一
时间限制:3000 ms | 内存限制:65535 KB
难度:1
描述
ACM队的队花C小+经常抱怨:“C语言中的格式输出中有十六、十、八进制输出,然而却没有二进制输出,哎,真遗憾!谁能帮我写一个程序实现输入一个十进制数n,输出它的二进制数呀?”
难道你不想帮帮她吗?^_^
输入输入有多个数据,数据以EOF结束;每个数据ni(0...
分类:
其他 时间:
2014-12-01 22:31:43
收藏:
0 评论:
0 赞:
0 阅读:
321
《Cocos2d-x实战 C++卷》上线了感谢大家一直以来的支持! 全面介绍Cocos开发技巧,采用Cocos2d-x3.2版本,并且详细介绍跨平台移植已经多平台发布细节。· 各大商店均开始销售:京东:http://item.jd.com/11584534.html亚马逊:http://www.amazon.cn/Cocos2d-x%E5%AE%9E%E6%88%98-C-%E5%8D%B7-%E...
分类:
编程语言 时间:
2014-12-01 22:31:33
收藏:
0 评论:
0 赞:
0 阅读:
345
问题描述:
Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only
distinct numbers from the original list.
For example,
Given 1->2->3->3->4->4->5, return 1->2->5.
Giv...
分类:
其他 时间:
2014-12-01 22:31:23
收藏:
0 评论:
0 赞:
0 阅读:
305
在UNIX下的我们怎么会沦落到用ruby写压缩和解压工具呢?直接上shell啊!但是请允许本猫这次可耻的用ruby来玩玩吧!其实ruby GEM中有很多压缩解压包,我选的是Zip,也许是因为名字符合KISS原则吧!
话先说到前头,这个工具如果解压有重名文件的情况会直接覆盖原文件而不会有任何提示!测试时务必注意,如果造成一些文件丢失可别怪本猫啊!
代码也考虑到多文件的情况,如果是...
分类:
其他 时间:
2014-12-01 22:31:13
收藏:
0 评论:
0 赞:
0 阅读:
335
题目链接:All in All
Problem E
All in All
Input: standard input
Output: standard output
Time Limit: 2 seconds
Memory Limit: 32 MB
You have devised a new encryption technique whi...
分类:
其他 时间:
2014-12-01 22:31:03
收藏:
0 评论:
0 赞:
0 阅读:
345
问题描述:
Given a list, rotate the list to the right by k places, where k is non-negative.
For example:
Given 1->2->3->4->5->NULL and k = 2,
return 4->5->1->2->3->NULL.
基本思想:
本题需要考虑k 大于链表长度的情况。所以链...
分类:
其他 时间:
2014-12-01 22:30:53
收藏:
0 评论:
0 赞:
0 阅读:
322
atitit.自己动手开发编译器and解释器(1) ------词法分析--attilax总结
1. 应用场景:::DSL 大大提升开发效率 1
2. 2. 流程如下::: 词法分析(生成token流) >>>>语法分析(生成ast) >>解释执行... 2
3. 如何进行词法分析?Fsm状态机(自动机)
2
4. 使用状态模式构建FSM (简单,易用。。推荐首选...
分类:
其他 时间:
2014-12-01 22:30:47
收藏:
0 评论:
0 赞:
0 阅读:
442
问题描述:
Write a program to find the node at which the intersection of two singly linked lists begins.
For example, the following two linked lists:
A: a1 → a2
↘
...
分类:
其他 时间:
2014-12-01 22:30:23
收藏:
0 评论:
0 赞:
0 阅读:
239
下面是我的回答:
1、游戏分为不同的平台类型:网页游戏、移动端的手机游戏、PC端游戏、专用主机游戏,作为个人开发者,基本上只有第二种能够赚钱,第一种需要服务器端的运营,后2种就不用考虑了
2、写游戏用什么软件工具?简单的说来,就两个:2D的用Cocos-2D,3D的用Unity 3D。且它们都有一个好处:可以直接跨平台部署到Android/iPhone上去(甚至网页端)。
3、但关键的问题是...
分类:
其他 时间:
2014-12-01 22:30:13
收藏:
0 评论:
0 赞:
0 阅读:
315
Wine的介绍
Wine是Wine Is Not an Emulator(Wine不是模拟器)的缩写,其实是一个转换层(或程序装入器),能够在Linux及与POSIX兼容的其他类似操作系统上运行Windows应用程序。Wine在Linux上无法模拟Windows应用程序,而是提供了另外的方法来实施DLL(典型的Windows应用程序可以调用这些DLL)和代替Windows NT内核的进程。W...
分类:
Windows开发 时间:
2014-12-01 22:29:53
收藏:
0 评论:
0 赞:
0 阅读:
332
RectanglesTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 707 Accepted Submission(s): 284
Problem DescriptionA rectangle in the Cartesian ...
分类:
其他 时间:
2014-12-01 22:29:43
收藏:
0 评论:
0 赞:
0 阅读:
283
胜利大逃亡
Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 26220 Accepted Submission(s): 9987
Problem Description
Ignatius被魔王抓走了,有一天魔王出差去...
分类:
其他 时间:
2014-12-01 22:29:33
收藏:
0 评论:
0 赞:
0 阅读:
296
atitit.自己动手开发编译器and解释器(2) ------语法分析,语义分析,代码生成--attilax总结
1. 建立AST 抽象语法树 Abstract Syntax Tree,AST) 1
2. 建立AST 语法树----递归下降(recursive descent)法 2
3. 语法分析概念 2
3.1. 上下文无关语言,非终结符(nonterminal symbol)...
分类:
其他 时间:
2014-12-01 22:29:13
收藏:
0 评论:
0 赞:
0 阅读:
367