本月博客排行
-
第1名
wy_19921005 -
第2名
mft8899 -
第3名
java-007 - benladeng5225
- Anmin
年度博客排行
-
第1名
龙儿筝 -
第2名
宏天软件 -
第3名
benladeng5225 - wy_19921005
- vipbooks
- kaizi1992
- 青否云后端云
- e_e
- tanling8334
- sam123456gz
- arpenker
- zysnba
- fantaxy025025
- xiangjie88
- wallimn
- lemonhandsome
- ganxueyun
- jh108020
- Xeden
- xyuma
- zhanjia
- wangchen.ily
- johnsmith9th
- zxq_2017
- forestqqqq
- jbosscn
- daizj
- xpenxpen
- 喧嚣求静
- kingwell.leng
- lchb139128
- kristy_yy
- jveqi
- javashop
- lzyfn123
- sunj
- yeluowuhen
- ajinn
- lerf
- silverend
- chenqisdfx
- xiaoxinye
- flashsing123
- bosschen
- lyndon.lin
- zhangjijun
- sunnylocus
- lyj86
- paulwong
- sgqt
最新文章列表
HDU-3371-Connect the Cities
HDU-3371-Connect the Cities
http://acm.hdu.edu.cn/showproblem.php?pid=3371
最小生成树,已知有些节点已经相连
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
struct cam
{
int x;
int y ...
HDU-1305-Immediate Decodability
HDU-1305-Immediate Decodability
http://acm.hdu.edu.cn/showproblem.php?pid=1305
字典树水题,判断前缀
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cstdlib>
using n ...
HDU-1671-Phone List
HDU-1671-Phone List
http://acm.hdu.edu.cn/showproblem.php?pid=1671
字典树,判断是否有某个数字是另一个数字的前缀,注意123不是123的前缀,建树之后要删除节点,否则会Memory LimitExceeded
写的比较麻烦,分两种情况,一是先出现123,再出现1234,;二是先出现1234,再出现123
#includ ...