自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 收藏
  • 关注

原创 MFCC

下面内容是当时的实验报告,用word写的。所以直接截图当时的内容,主要是做个记录而已。 matlab代码如下: clear;clc;close all; z=[]; z1=[]; %语音采集 r=audiorecorder(16000,16,1); record(r);%开始录音 but_stop=input('

2016-07-15 17:40:03 991

原创 链表加优先队列做拓扑排序

Description  John has n tasks to do. Unfortunately, the tasks are not independent and the execution of one task is only possible if other tasks have already been executed. Input There are mul

2016-07-15 17:21:17 278

原创 hash单词翻译(BKDR)

,大学做的一个小project,利用哈希实现单词翻译,也使用到文件流 数组 #include #include #include #include #include using namespace std; struct Word{ string english; string chinese; bool exist;

2016-07-15 17:20:23 480

原创 SOJ 1048

BFS #include #include #include #include #include #include using namespace std; struct status{ int k; vector route; }; bool check[520];//判断当前情况是否走过 2^9 int main() { int test; cin >>

2016-07-15 17:19:46 196

原创 K-based Numbers. Version 2

高精度乘法,加法,动态规划 Description Let’s consider K-based numbers, containing exactly N digits. We define a number to be valid if its K-based notation doesn’t contain two successive zeros. For

2016-07-15 17:17:32 253

原创 SOJ 1171

题意:在一块n*m的板子上,有一些细菌,如果一个细菌八个方向上细菌数为2或3,下回合保留,否则消失,如果是一个空格周围细菌数为3,则下回合长出新的,现在给出一种情况,要求出可能得到这种子代的父母有多少种情况 解法:因为这道题的规模不是很大n*mn(m),就能将-1变成n-1(m-1),达到连通的效果,然后我是wa了一次,因为数组开太小了,因为说n*m6*6,然后就错了,这个很煞笔。枚举所有情况可

2016-07-15 17:17:08 532

原创 Sicily merge

Given n intervals, you should merge all overlapping intervals.  For example, the given intervals are:  [1,3],  [2,6],  [3,5], [7,9]  you should output:  [1,6], [7,9] Input The first l

2016-07-15 17:16:43 209

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除