yoheng
yoheng
全部文章
分类
# 2019省赛集训个人和组队积分赛(6)
# codeforces(37)
# DFS(2)
# JAVA学习(10)
# Linux(1)
# NOIP题(3)
# Python学习(8)
# Python数据分析与挖掘(1)
# 做题总结(1)
# 动态规划(8)
# 并查集(2)
# 广搜(4)
# 数据库原理(1)
# 日常小结(1)
# 最小生成树(1)
# 树状数组(6)
# 矩阵快速幂(3)
# 线段树(6)
# 蓝桥杯(1)
ACM之路(1)
codeforces(15)
JAVA学习(2)
KMP(2)
map(1)
二分(1)
优先队列(1)
动态规划(2)
图论(2)
并查集(2)
广搜(1)
操作系统(2)
数据结构(1)
日记(3)
最小生成树(1)
未归档(137)
树状数组(1)
欧拉函数(2)
比赛题(1)
省赛集训个人和组队积分赛(5)
矩阵快速幂(1)
算法学习(3)
线段树(3)
计算机网络(7)
面经(1)
面试算法题(1)
面试经历(1)
归档
标签
去牛客网
登录
/
注册
yoheng的博客
全部文章
(共302篇)
YWMqaNeLQu
YWMqaNeLQu
2019-07-19
0
315
KMP
// int KMP(int s[MM],int p[MM],int st,int tn,int F[MM]) { int i=0,j=0; while(i<st&&j<tn) { if(j==-1||s[i]==p[j]) ...
2019-07-17
0
468
codeforce-Text Document Analysis
我是题目 Modern text editors usually show some information regarding the document being edited. For example, the number of words, the number of pages, or...
2019-07-17
0
563
isalpha()函数
使用时需包含头文件<ctype.h> #include<ctype.h> 原型:int isalpha(int ch) 判断字符ch是否为英文字母,当ch为英文字母a-z或A-Z时,返回非零值,否则返回零。 #include<iostream> #inclu...
2019-07-17
0
364
java-Sting-StrngBuffer类简单总结
String 类 String是final类型,一旦创建其内容和长度是不可改变的。 String类常用的一些方法; int length();//返回此字符串的长度; boolean equals( );//此字符与指定字符比较 String substring(int beinIndex...
2019-06-22
0
399
codefoces-A. Feed the cat
题目链接 A. Feed the cat After waking up at hh:mm, Andrew realised that he had forgotten to feed his only cat for yet another time (guess why there’s only...
2019-06-18
0
357
codefoces-B. Plus from Picture
题目链接 You have a given picture with size w×h. Determine if the given picture has a single “+” shape or not. A “+” shape is described below: A “+” shap...
2019-06-12
0
492
最小生成树-Kruskal(克鲁斯卡尔)算法+理解+证明;
关于最小生成树,我曾经理解过,然后上离散数学后又理解了一遍,所以就向想一下这个博客;主要是理解和证明; .首先我们什么提出最小生成树概念: 设无向连通带权图G=<V,E,W>,T是G的一颗生成树,T的各边权之和称为T的权,记作W(T)。G的所有生成树中权最小的生成树称为G的最小生成树。...
2019-06-11
0
1667
dfs-最大黑区域
题目链接 最大黑区域 二值图像是由黑白两种像素组成的矩形点阵,图像识别的一个操作是求出图像中最大黑区域的面积。请设计一个程序完成二值图像的这个操作。黑区域由黑像素组成,一个黑区域中的每个像素至少与该区域中的另一个像素相邻,规定一个像素仅与其上、下、左、右的像素相邻。两个不同的黑区域没有相邻的像素。一...
2019-06-10
0
1347
H题 Simple Triangle
H题; In this problem you need to make a triangle ,just like the sample out. The element in the ith row and jth column should be the product(乘积) of i a...
2019-06-10
0
326
首页
上一页
16
17
18
19
20
21
22
23
24
25
下一页
末页