自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

CC

分享失败

  • 博客(2)
  • 资源 (10)
  • 收藏
  • 关注

原创 不用库函数编写strcpy函数

char * strcpy(char*strDest, const char* strSrc) {     char * p;      if (strDest == NULL || strSrc == NULL)            return NULL;   if (strDest == strSrc)     return strDest;   p = strDest;

2014-10-23 17:04:29 687

原创 有序数组的二分查找程序

int BinarySearch(void *a, int low, int high, void * key) { int mid; mid = (low + high)/2; if (low >= high - 1) { if (a[low] == *key) { return low; } else if (a[high] == *key) { return hi

2014-07-31 17:05:57 470

pthread primer

This book aims to give the programmer or technical manager a solid, basic understanding of threads—what they are, how they work, why they are useful, and some of the programming issues surrounding their use. As an introductory text, it does not attempt a deep, detailed analysis. (At present, there are no deep, detailed analyses!) After reading this book the reader should have a solid understanding of the fundamentals, be able to write credible, modestly complex, threaded programs and have the understanding necessary to analyze their own programs and determine the viability of threading them.

2015-03-02

gauss process in machine learning

In this book we will be concerned with supervised learning, which is the problem of learning input-output mappings from empirical data (the training dataset). Depending on the characteristics of the output, this problem is known as either regression, for continuous outputs, or classification, when outputs are discrete.

2015-03-02

高级Linux程序设计

该书详细说明了Linux下c开发的各个细节,包括进程,线程,锁机制,进程通信,并发,等等

2014-10-23

Machine Learning - A Probabilistic Perspective

基于概率观点的关于机器学习的经典中的经典,目前国内无翻译版本,要想体会该书的精髓,请直接钻研原版书。

2014-10-23

数字信号处理-高清(第四版)

经典的数字信号处理教材,国外大牛之巨著,中文版第四版,值得学习

2014-07-31

模式分类第2版

本书作为流行的经典教材,主要面向电子工程,计算机科学,数学和统计学,媒体处理,模式识别,计算机视觉,人工智能和认知科学的重要参考书。

2012-07-20

C++ Qt设计模式(第二版)英文版

该文档是英文版,专业的QT书籍,适合入门和中级QT程序员。

2012-07-20

群集智能(英文版)

该书是第一部详细描述群集智能的理论书籍,有德国和意大利科学家联合打造的一部经典之作。

2012-02-25

加密解密技术内幕

该文档详细描述了加密和解密的一般理论和技术,有一定得参考价值。

2012-02-25

空空如也

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

TA关注的人

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