自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

kesonyk的专栏

勇气与专一

  • 博客(9)
  • 资源 (7)
  • 收藏
  • 关注

转载 alsa capture

/**** configures it for stereo,16 bit,44.1kHz,interleaved access ***/#include "capture.h"int capture_period(){    int err;snd_pcm_t *capture_handle;snd_pcm_hw_params_t *h

2015-03-31 23:27:03 641

转载 ALSA 学习

A Tutorial on Using the ALSA Audio APIThis document attempts to provide an introduction to the ALSA Audio API. It is not a complete reference manual for the API, and it does not cover many specific

2015-03-31 23:02:57 571

原创 RTP 简单的发送端程序和接收端程序

发送端/* * ===================================================================================== * * Filename: jrtp2.cpp * * Description: * * Version: 1.0 * Created

2015-03-28 16:17:56 1432

转载 多线程编程学习1

#include #include #include #include #define MAX 10pthread_t thread[2];pthread_mutex_t mut;int number=0,i;void *thread1(){ printf("thread1:I'm thread 1\n"); for(i=0;i<MAX;i++) { print

2015-03-27 22:27:03 243

原创 插入排序分析及优化

插入排序是一个简单的原址排序,对于少量的元素,这是一个有效的算法。也常用来对快排做元素较少时的优化选择。            伪代码描述:            INSERTION-SORT(A)            for j=2 to A.length                   key=A[j]                   i=j-1;

2015-03-25 20:33:10 312

原创 List 的简单实现 c++11

/*************List*******************class List{}method:List():List(const List &rhs)~List()const List &operator=(const List &rhs)List(List &&rhs)List &operator=(List &&rhs)int size() const:b

2015-03-25 19:34:44 541

原创 Vector 的简单实现 C++11

/**********class templates Vector************* int size() const: return the numbers of elements in the container void clear(): removes all elements

2015-03-24 23:03:22 493

原创 算法导论—归并merge排序

#include #include #include using namespace std;void Merge(vector &vec,size_t p,size_t q,size_t r){ auto n1=q-p+1; auto n2=r-q; vector lhs(n1+1); vector rhs(n2+1); for(int i=0;i<n1;++i)

2015-03-17 20:51:15 529

原创 算法导论—排序—插入排序

下标 j 指出正被插入到手中的“当前牌”,在for 循环的每次迭代的开始,包含元素1—j-1 的子数组构成了当前排序好的牌,j+1—n为仍在桌上的牌。该排序主要的思想是将排序好的每个逆序与当前要排序的进行相比,若大于则向前移一位。。。#include #include using namespace std;void insertSort(vector &vec)

2015-03-17 14:23:25 272

darknet.conv.weights

darknet 权重

2016-12-10

语音识别基本原理 经典之作

国外的语音识别开山之作,非常值得一看,书已经绝版了

2014-12-25

数据结构与算法分析 4th,高清pdf及源码

数据结构与算法分析C++描述第四版的英文pdf,高清,以及本书源码,对于学习C++,数据结构的同学很有帮助,用C11标准写的

2014-11-18

硬件工程师手册

硬件工程师手册,华为内部资源,硬件工程师应当了解的知识。不错的介绍

2012-11-14

空空如也

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

TA关注的人

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