码迷,mamicode.com
首页 >  
搜索关键字:datastructure    ( 155个结果
【DataStructure】Implemantation of Binary Tree
Here is a class for binary trees that directly implements the recursive definition. By extending the AbstractCollectionclass, it remains consistent with the Java Collections Framework....
分类:其他好文   时间:2014-08-20 00:04:26    阅读次数:307
【DataStrcutre】Introduction and description of Binary Trees
[Definitions] Here is the recursive definition of a binary tree: A binary tree is either the empty set or a triple T = (x,L,R), where x is a node and L and R are disjoint binary trees, neither of wh...
分类:其他好文   时间:2014-08-18 01:34:43    阅读次数:216
【DataStructure】Description and Introduction of Tree
【Description】 At ree is a nonlinear data structure that models a hierarchical organization. The characteristic eatures are that each element may have several successors (called its “children”) and ev...
分类:其他好文   时间:2014-08-17 22:47:03    阅读次数:275
【DataStructure】 Five methods to init the List in java
Do you know how to init list in other way except for new object? The following will give you serveral tips. If having other great idea, you are welcome to share.  [java] view plaincopy ...
分类:编程语言   时间:2014-08-14 01:30:37    阅读次数:281
【DateStructure】 Charnming usages of Map collection in Java
When learning the usage of map collection in java, I found serveral beneficial methods that was encountered in the daily life. Now  I made a summary:  [java] view plaincopy i...
分类:编程语言   时间:2014-08-14 01:30:28    阅读次数:207
【DataStructure】Charming usage of Set in the java
In an attempt to remove duplicate elements from list, I go to the lengths to take advantage of  methods in the java api. After investiagting the document of java api, the result is so satisfying that ...
分类:编程语言   时间:2014-08-14 01:30:17    阅读次数:256
【DataStructure】A useful util class for reading and writing files
Faced with the upcoming exam, Some useful methods referred to file operation drew tremenous attention. Now I make a summary to reading file. [java] view plaincopy import java...
分类:其他好文   时间:2014-08-14 01:30:09    阅读次数:331
【DataStructure】Another usage of List: Polynomial
Statements: This blog was written by me, but most of content  is quoted from book【Data Structure with Java Hubbard】  【Description】 Apolynomialis a mathematical function of the fo...
分类:其他好文   时间:2014-08-11 21:22:42    阅读次数:308
【DataStructure】Descriptioin and usage of List
Statements: This blog was written by me, but most of content  is quoted from book【Data Structure with Java Hubbard】  【Description】 Alistis a collection of elements that are accessible sequential...
分类:其他好文   时间:2014-08-11 00:28:31    阅读次数:221
【DataStructure】 Classical Question: Josephus Cycle
【Description】   This problem is based upon a report by the historian Joseph ben Matthias (Josephus) on the outcome of a suicide pact that he had made between himself and 40 soldiers as they were besi...
分类:其他好文   时间:2014-08-11 00:27:51    阅读次数:235
155条   上一页 1 ... 12 13 14 15 16 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!