- 博客(3)
- 收藏
- 关注
原创 Perceptron for Word Segmentation
Word Segmentation including structural and nonstructural perceptron using CppSee GithubURL: https://github.com/So1ene/Perceptron-For-Word_Segmentation
2017-01-28 16:21:49 254
原创 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 411
原创 _stl_deque中Iterator机制
_stl_deque中Iterator实现机制Note:deque方便进行前增和后增,但是修改效率极低!如果要实现排序或其它操作,最好先复制到其它容器操作后再复制回类中定义了typedef T** map_pointer,作为中继器,起到类似于块表的作用,保存指向各个分开存储的块的指针;Iterator中定义了成员函数map_pointer,cur_pointer,firs
2016-11-16 14:10:49 484
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人