
Basic
magic_dreamer
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
RabbitMQ(3)Install on CentOS
RabbitMQ(3)Install on CentOS 1. Install erlang >sudo wget -O /etc/yum.repos.d/epel-erlang.repo http://repos.fedorapeople.org/repos/peter/erlang/epel-erlang.repo >sudo yum update >sudo yum instal...原创 2012-07-02 22:20:07 · 98 阅读 · 0 评论 -
Compiler Principle(1)Lex and Yacc
Compiler Principle(1)Lex and Yacc1. Some ConceptAbstract Syntax Tree ASTLex - Lexical AnalyzerYacc - Yet Another Compiler Compiler2. Lex>lex --versionflex 2.5.35 Apple(flex-31)Declare the wordCou...原创 2014-06-06 23:10:58 · 200 阅读 · 0 评论 -
Git Roll Back to Commits
Git Roll Back to CommitsRecently, my friends just wrongly commit his local changes to our master branch.Here is the way to roll it back.>git reset —hard <old-commit-number-from-browser>>gi...原创 2014-09-30 05:45:25 · 181 阅读 · 0 评论 -
Algorithm Basic(1)Algorithm in Java
Algorithm Basic(1)Algorithm in Java 1. BasicTime O(1), O(n), O(n^2), O(n^3), O(2^n)Storage array is set, it is fast, but the length is set.Collection —List can have repeat objects —A...原创 2014-10-02 12:20:12 · 156 阅读 · 0 评论 -
Interview(1)Algorithm Book
Interview(1)Algorithm Book Chapter 1 Algorithm Basic Sorting A[0.. n-1], 0=0 outputs: 2 * 2 * 2 …r { if(r = 0) return 1; if(r is odd) return 2 * sqr(Power((r-1)/2)); else ...原创 2017-06-09 04:37:07 · 156 阅读 · 0 评论