1.单向循环链表
区分单向链表和单向循环链表:单向循环链表的尾指针指向头结点。
2.单向循环链表的基本操作
#include
#include
#define NULL 0
typedef struct node {
int data;
struct node *next;
}ElemSN;
ElemSN * creat_link(int ms); //创建一个单向循环链表
...
分类:
其他好文 时间:
2014-07-22 23:50:48
阅读次数:
264
简单线段树插入和查询删除 1 #include 2 #include 3 #include 4 using namespace std; 5 int num[10000]; 6 int node[20000]; 7 int scale; 8 void clear(int n){ 9 scal...
分类:
其他好文 时间:
2014-07-22 23:30:27
阅读次数:
291
class Solution {public: UndirectedGraphNode *cloneGraph(UndirectedGraphNode *node) { UndirectedGraphNode *clone = dfs(node); dfs_clea...
分类:
其他好文 时间:
2014-07-22 23:05:52
阅读次数:
197
l问题描述:有一块N*N的玉米田(N 2 #include 3 #include 4 5 using namespace std; 6 7 int field[52][52]; 8 int N,K; 9 10 struct Node{11 int x,y,r;12 }node[11];1...
分类:
其他好文 时间:
2014-07-22 22:46:15
阅读次数:
216
原文来自于http://www.infoq.com/cn/news/2014/07/node.js-nodemailer1.0-publishNodemailer是一个简单易用的Node.js邮件发送组件(通过SMTP、sendmail或者Amazon SES实现邮件发送),且支持 Unicode编...
分类:
Web程序 时间:
2014-07-22 22:45:33
阅读次数:
241
这些天看了mirantis中puppet的使用,对puppet的认识有了更深入的理解。mirantis公司的fuel主要是为了方便部署生产环境的openstack的工具。主要是在集群中自动化的安装openstack,避免繁琐的配置细节。fuel的安装要先安装Fuel server,再安装node s...
分类:
其他好文 时间:
2014-07-22 22:42:52
阅读次数:
202
直接代码、、、
#include
#include
#include
#include
#include
using namespace std;
struct node
{
int fuel,dist;
//bool operator d.dist;
// }
}s[10005];
...
分类:
其他好文 时间:
2014-07-22 22:34:14
阅读次数:
178
不要在windows 2012 server上安装jenkins直接在jenkins master上添加Node,输入c:\jenkins作为目录,并且输入windows administrator用户名和密码然后启动报错,参考下面的文档打开windows的权限:https://issues.jenkins-ci.org/browse/JENKINS-16418?page=com.atlassia...
最近在tornado\mongodb\ansible
mongodb中有个find()方法很牛逼,可以将集合中所有的表都传出来,一开始我这么写
class Module_actionHandler(tornado.web.RequestHandler):
def get(self, *args, **kwargs):
coll = self.applic...
分类:
数据库 时间:
2014-07-22 17:52:41
阅读次数:
291
对于cocos2d-x经常要用到的方法,不得不好好研究一下,这次的研究真心有收获。
首先定义一个精灵,实现一连串连续的动作。
为了动作能够回调我们的函数,我们必须先声明并实现他们。
void callBack();
void callBack_1(Node* node);
void callBack_2(Node* node,const char* str);...
分类:
其他好文 时间:
2014-07-22 14:15:03
阅读次数:
387