自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 Perceptron for Word Segmentation

Word Segmentation including structural and nonstructural perceptron using Cpp See Github URL: https://github.com/So1ene/Perceptron-For-Word_Segmentation

2017-01-28 16:21:49 231

原创 GCD Algorithm(Greatest Common Divisor)

Greatest Common Divisor: //初版本: int GCD(int left,int right){ int maxNum=left>right?left:right; int minNum=left>right?right:left; int remainder=maxNum%minNum; while(remainder){ maxNum=minNu

2016-12-19 20:21:37 387

原创 _stl_deque中Iterator机制

_stl_deque中Iterator实现机制 Note:deque方便进行前增和后增,但是修改效率极低!如果要实现排序或其它操作,最好先复制到其它容器操作后再复制回 类中定义了typedef T** map_pointer,作为中继器,起到类似于块表的作用,保存指向各个分开存储的块的指针; Iterator中定义了成员函数map_pointer,cur_pointer,firs

2016-11-16 14:10:49 465

空空如也

空空如也

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

TA关注的人

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