本月博客排行
-
第1名
龙儿筝 -
第2名
johnsmith9th -
第3名
wy_19921005 - zysnba
- sgqt
- lemonhandsome
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- gaojingsong
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- lzyfn123
- zhanjia
- forestqqqq
- johnsmith9th
- ajinn
- nychen2000
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- silverend
- mwhgJava
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
最新文章列表
以递归方式从指定根节点,获取一个树型结构的数据
1、以递归方式从指定根节点,获取一个树型结构的数据!
/**
* 根据指定的根节点从List中遍历一个子树出来;
*
* @param paramCollect:提供树节点数据的集合;
* @param paramDesList:产生的目标子数的集合;
* @param paramTreeRoot:树根元素;
* @return void:无返回值;
*/
priv ...
A simple implementation of "Input Method" in Java
package edu.xmu.guava.jcip;
import java.util.Map;
public interface Traversable {
public void addWord(String word, int index);
public Traversable getNext(Character c);
public Map<Char ...
基础数据结构和算法十二:Hash table
Search algorithms that use hashing consist of two separate parts. The first part is to compute a hash function that transforms the search key into an array index. Ideally, different keys would map ...
数据结构之折半查找法(Binary Search)
对于要查找的数据已经排序,此时仍然可以使用顺序查找法来进行查找,但是此时有更加简便的方法, 那就是“折半查找法(Binary Search)”。 折半查找法的实现步骤如下: 假设数组的上下范围分别为low和high,则此时中间元素是(low + hihg) / 2。在进行查找时。 1.如果查找关键码小于数组的中间元素,则关键码在数据数组的前半部。 2.如果查找关键码大于数组的中间元素,则关键码在数据 ...
hdu 4315 Digital root 【多校6】【线段树】
线段树,居然pe了一次。。现场赛pe可是算wa的。。这尼玛!
#include<iostream>
#include<vector>
#include<algorithm>
#include<cstdio>
#include<queue>
#include<stack>
#include<string>
# ...
hdu 4331 Image Recognition
wa的有点无语,细节比较多的题对我来说真伤不起。。。
#include<iostream>#include<vector>#include<string>#include<cstdio>#include<iomanip>#include<algorithm>using namespace std;#define pb pu ...
hdu 4331 Image Recognition
wa的有点无语,细节比较多的题对我来说真伤不起。。。
#include<iostream>#include<vector>#include<string>#include<cstdio>#include<iomanip>#include<algorithm>using namespace std;#define pb pu ...
数据结构之图的邻接表表示法
邻接表表示法:
就是使用基本链表来链接每个顶点的邻近顶点,每个顶点的结构,如下图所示:
对于如下的无向图:
其对应的邻接表表示法如下图所示:
代码实现如下:
/*File Name : ALGraph.hCopyright :Date time : 2012.8.7Author :Description :*/struct node{ int vertex; ...
Data Structures | 数据结构
Data Structures:
线性(Linear) (即常说的线性表)
顺序表/数组(Array)
链表(Linked List)
单向链表/单链表(Singly Linked List)
循环链表(Circular Linked List)
...