博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

11 2012 档案

摘要:摘要:本文所述算法来自IEEE PAMI的文章"Multiprimitive Segmenatation of Planar Curves-A Two-Level Breakpoint Classification and Tuning Approach"。大家可以到百度文库:http://wenku.baidu.com/view/e01f28f10242a8956bece43f.html?st=1下载。如果没有文库号的,可以到新浪爱问:http://ishare.iask.sina.com.cn/f/34715669.html免费下载。本文算法程序均系作者原创,欢迎各位研 阅读全文

posted @ 2012-11-18 20:43 子水 阅读(1921) 评论(4) 推荐(1)

摘要:《C++ Primer Plus》第12章的编程练习2。这一章介绍类和动态内存分配,相当精彩。编写简单的String类,并测试。 1 //string1.h -- fixed and augmented string class defination 2 #include <iostream> 3 using std::ostream; 4 using std::istream; 5 6 #ifndef STRING1_H_ 7 #define STRING1_H_ 8 class String 9 {10 private:11 char *str; // pointer to.. 阅读全文

posted @ 2012-11-06 10:13 子水 阅读(1026) 评论(0) 推荐(0)