码迷,mamicode.com
首页 >  
搜索关键字:node 计划任务 schedule    ( 30410个结果
代码艺术 CountDownTimer
/** * Schedule a countdown until a time in the future, with regular notifications on intervals along the way. * * Example of showing a 30 second count...
分类:其他好文   时间:2014-05-16 04:21:02    阅读次数:311
Copy List with Random Pointer
A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.Return a deep copy ...
分类:其他好文   时间:2014-05-15 21:00:06    阅读次数:325
Populating Next Right Pointers in Each Node
Populating Next Right Pointers in Each Node...
分类:其他好文   时间:2014-05-15 19:29:18    阅读次数:349
ftrace 使用方法
1. 追蹤Kernel function (以schedule()示範)先至/sys/kernel/debug/tracing# cat available_tracers確定有無 函式追蹤器(function)blk mmiotrace function_graph wakeup_rt wakeu...
分类:其他好文   时间:2014-05-15 17:50:00    阅读次数:339
学习nodejs -02
断言:学java的时候学过断言,但一直用的很少,node中也有varassert=require(‘assert‘) console.info(‘.......startapp.......‘); varactual=1; varexpect=‘1‘ vara; //判断是否为真 assert(a,‘isnotvalid‘); assert.ok(0,‘isnoteffective‘); //arg[0]为真实值,arg[1]期望值,a..
分类:Web程序   时间:2014-05-15 09:09:47    阅读次数:373
学习nodejs -01
nodejs是一个通过v8引擎解析javascript的服务器平台,并不是js框架。V8是为google开源的js引擎,chrome就是用的他,据大牛们介绍,V8直接把js编译成机器码,而不是脚本解释执行,所以运行速度非常快。Nodejs之后我就简称Node了,使用c++写的。基于事件驱动,非阻塞IO模型,也就..
分类:Web程序   时间:2014-05-15 08:32:33    阅读次数:434
CF:Problem 427C - Checkposts强连通 Tarjan算法
tarjan算法第一题    喷我一脸。。。。把手写栈的类型开成了BOOL,一直在找错。。。 #include #include #include #include #define maxn 100005 const int MOD=1000000007; using namespace std; struct node { int to,next; }edge[maxn...
分类:其他好文   时间:2014-05-15 08:18:56    阅读次数:353
Leetcode 线性表 Remove Nth Node From End of List
题意:移除链表的倒数第n个元素 思路: 两个指针p, q, p先走n步,然后p,q一起走,当p走到尾的时候,q->next就是要删除的节点 复杂度: 时间O(n),空间O(1)...
分类:其他好文   时间:2014-05-15 02:53:13    阅读次数:241
Pat(Advanced Level)Practice--1043(Is It a Binary Search Tree)
Pat1043代码题目描述:A Binary Search Tree (BST) is recursively defined as a binary tree which has the following properties:The left subtree of a node contain...
分类:其他好文   时间:2014-05-14 22:03:25    阅读次数:487
Node.js异步处理CPU密集型任务
这篇文章提出了backgroundjs这个新的概念,扩展了Node.js的能力,解决了Node在处理CPU密集任务时的短板。这个解决方案使得使用Node的开发人员只需要关注backgroundjs中的函数。比起多开进程或者新添加模块的解决方案更高效,通用和一致。...
分类:Web程序   时间:2014-05-14 21:16:18    阅读次数:502
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!