上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 57 下一页

2015年4月10日

http://blog.csdn.net/itplus/article/details/10088625

摘要: http://blog.csdn.net/itplus/article/details/10088625 DBSCAN 阅读全文

posted @ 2015-04-10 11:17 雨渐渐 阅读(150) 评论(0) 推荐(0) 编辑

2015年4月8日

c++ 队列

摘要: #include #include using namespace std;int main(){ int e,n,m; queue q1; for(int i=0;i<10;i++) q1.push(i); if(!q1.empty()) cout... 阅读全文

posted @ 2015-04-08 20:00 雨渐渐 阅读(89) 评论(0) 推荐(0) 编辑

2015年4月6日

17:特殊类成员:函数指针5

摘要: 1, 函数首地址被赋值给了函数名,故函数名是函数内存地址的首地址。2, 一个指向函数的指针|必须确保该函数被定义 | |且分配了内存 |否则他将指向一个空地址,这是指针的大忌。3,long(*func)(int) : 声明了一个指针,该指针指向一个函... 阅读全文

posted @ 2015-04-06 15:24 雨渐渐 阅读(135) 评论(0) 推荐(0) 编辑

c++ deque 双端队列

摘要: 双端队列:函数描述c.assign(beg,end)c.assign(n,elem)将[beg; end)区间中的数据赋值给c。将n个elem的拷贝赋值给c。c.at(idx)传回索引idx所指的数据,如果idx越界,抛出out_of_range。c.back()传回最后一个数据,不检查这个数据是否... 阅读全文

posted @ 2015-04-06 11:23 雨渐渐 阅读(457) 评论(0) 推荐(0) 编辑

2015年4月5日

18:字符串-char型字符串

摘要: 1 什么是字符串?字符串是以空字符(\0)结尾的字符数组。空字符的assii码为:0, 空格的ascii码为322 \0的作用'\0'是一个空字符标志,它的ASSII码为0,C++有好多处理字符串的函数,都以'\0'为结束标记。 也就是以空字符为结束标记,比如cin,cout。它们都以空字符为结束标... 阅读全文

posted @ 2015-04-05 19:48 雨渐渐 阅读(627) 评论(0) 推荐(0) 编辑

2015年4月3日

c++ 16 this 和 继承 及继承机制中的构造函数 与 析构函数

摘要: #include #include using namespace std;class Animal{public: Animal(); Animal(string name); string mouth; void eat(); void sleep(); vo... 阅读全文

posted @ 2015-04-03 21:09 雨渐渐 阅读(213) 评论(0) 推荐(0) 编辑

2015年4月2日

c++ string char* const char*

摘要: #include #include #include using namespace std;int main(){ { string s = "tom and jerry"; const char* c_s = s.c_str(); cout ... 阅读全文

posted @ 2015-04-02 15:38 雨渐渐 阅读(184) 评论(0) 推荐(0) 编辑

c++ 小片段

摘要: void test_string(){ string sen = "Connection will be closed if there is no " "read/write operations during the last 'idle_timeo... 阅读全文

posted @ 2015-04-02 10:42 雨渐渐 阅读(147) 评论(0) 推荐(0) 编辑

2015年3月31日

google protobuf 使用示例

摘要: 1 定义.proto接口文件package tutorial;message Person { required string name = 1; required int32 id = 2; //unique ID number for this person optional ... 阅读全文

posted @ 2015-03-31 16:48 雨渐渐 阅读(4110) 评论(0) 推荐(0) 编辑

c++ 虚方法

摘要: #include #include using namespace std;class Pet{public: Pet(string theName); void eat(); void sleep(); virtual void play();protected: s... 阅读全文

posted @ 2015-03-31 13:15 雨渐渐 阅读(260) 评论(0) 推荐(0) 编辑

上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 57 下一页

导航