
C++ STL
文章平均质量分 78
ych_ding
这个作者很懒,什么都没留下…
展开
-
STL统计英文中单词出现频率的问题
#include #include #include #include #include #include #include #include using namespace std;class CWord{ string word;public: CWord(string word) { this->word = word; } string GetWo原创 2014-06-27 15:13:11 · 1149 阅读 · 0 评论 -
反序一个无符号整数x 不占用额外的空间 采用异或操作
#ifndef BITSREVERSE_H_#define BITSREVERSE_H_#includeusing namespace std;class Bit{public: typedef unsigned int uint; /* * 交换无符号数字x的i,j位 * 曾出现两处书写错误 1. 进行异或交换时候,构造bit时候>. 2.循环交换时候n/2误写原创 2014-07-01 21:29:15 · 596 阅读 · 0 评论 -
单向循环链表的有序插入 对单向循环链表head插入元素 链表保持有序
#ifndef CYCLICLIST_H_#define CYCLICLIST_H_#include using namespace std;class CyclicList{public: /* public标示外部代码可见 */ struct node { int dat; struct node* next; }; /* * 向循环单链表中插入新元素原创 2014-07-01 21:32:37 · 1646 阅读 · 0 评论 -
基础知识备忘录
this 指针The process of having one constructor call another constructor is called constructor chaining. Although some languages such as C# support constructor chaining, C++ does not.参考资料this 指针原创 2015-09-10 07:55:08 · 648 阅读 · 0 评论