随笔 - 65  文章 - 0  评论 - 21  阅读 - 32万
04 2013 档案
【CLRS】《算法导论》读书笔记(四):栈(Stack)、队列(Queue)和链表(Linked List)
摘要:栈(Stack)维基百科:http://en.wikipedia.org/wiki/Stack_(abstract_data_type)在栈中,被删除的是最近插入的元素:栈实现的是一种后进先出(last-in, first-out, LIFO)策略。栈上的INSERT操作称为压入(PUSH), 而无元素参数的DELETE操作称为弹出(POP)。伪码:STACK-EMPTY(S) if S.top == 0 return TURE else return FALSEPUSH(S, x) S.top = S.top + 1 S[S.top] = xPOP(S) if STACK-E... 阅读全文
posted @ 2013-04-18 20:27 Anthony Li 阅读(744) 评论(0) 推荐(0) 编辑
【ejabberd】安装XMPP服务器ejabberd(Ubuntu 12.04)
摘要:ejabberdejabberdis a free and open source instant messaging server written inErlang/OTP.ejabberdis cross-platform, distributed, fault-tolerant, and based on open standards to achieve real-time communication.ejabberdis designed to be a rock-solid and feature rich XMPP server.ejabberdis suitable for s 阅读全文
posted @ 2013-04-04 21:39 Anthony Li 阅读(8008) 评论(1) 推荐(0) 编辑

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

博客园博客已停止更新,博客地址:dyinigbleed.com

点击右上角即可分享
微信分享提示