自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 资源 (3)
  • 收藏
  • 关注

原创 图计算代码

#include #include // only can move right and down. Matrix mxn, how many ways from point(0,0) to point(m,n)int ways(int m, int n){  if( 0==n && 0==m) return 0;  if( 0==n || 0==m ) retur

2016-01-25 08:43:37 730

原创 双向链表 代码

#include #include typedef struct node{ struct node *prev; struct node *next; int value;} Node;class linked_list{private: Node * head; Node * cur;public: linked_list()

2016-01-25 08:41:01 489

原创 二叉树 代码 早年联系题

#include #include #include typedef struct node{  struct node *left;  struct node *right;  int value;} Node;static Node *p_node[100];// for BSF way breadthordervoid enqueue( N

2016-01-25 08:39:49 382

原创 排序算法代码 早年练习题 冒泡 归并 快速

#include #include #include //quick sortvoid swap(int *px, int *py){  int tmp;  tmp = *px;  *px = *py;  *py = tmp;}int split(int a[],int low, int high){  int i=low, j=hi

2016-01-25 08:35:46 407

Disk IO especially SSD optimization step by step share

Disk IO especially SSD optimization step by step

2015-11-25

逻辑回归 S函数 极大似然

这三者的理解 结合具体案例

2015-09-22

极大似然 S函数 逻辑回归 具体案例 学习笔记

极大似然 S函数 逻辑回归 具体案例 学习笔记

2015-03-12

空空如也

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

TA关注的人

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