摘要: 数据结构的应用--Adlist.h定义1.节点结构typedef struct listNode { struct listNode *prev; //前向节点 struct listNode *next; //后向节点 void *value; //该节点的值} listNode;2.双向链表结构typedef struct list { listNode *head; //头节点 listNode *tail; //尾节点 void *(*dup)(void *ptr); //复制函数 void (*free)(void *ptr); //释放函数 int (*match)(void *p 阅读全文
posted @ 2013-12-17 22:04 一天不进步,就是退步 阅读(2345) 评论(0) 推荐(0) 编辑
摘要: <Hudson-ci‎ |Using Hudson‎ |Installing Hudson(Redirected fromHudson-ci/Installing Hudson RPM)Hudson Continuous Integration ServerWebsiteDownloadCommunityMailing List•Forums•IRCBugzillaOpenHelp WantedBug DayContributeBrowse SourceInstalling Hudson on RedHat, Oracle Enterprise Linux & other RPM 阅读全文
posted @ 2013-12-17 19:58 一天不进步,就是退步 阅读(392) 评论(0) 推荐(0) 编辑
摘要: "Install as Windows Service" from the menu:Confirm your intention to install as a service. The installation will place the program files to the directory designated as the slave root directory (from the "configure executors" screen.)Once the installation succeeds, you'll be a 阅读全文
posted @ 2013-12-17 19:54 一天不进步,就是退步 阅读(769) 评论(0) 推荐(0) 编辑