string的简单应用
string的基本初始化
std::string s1(“xxxxxxxxx”)
std::string s2=”xx”
std::string s3(s2)
string的对象方法
s1.empty();
s1.size();//返回类型扩展typedef string::size_type ST;
s1[index];//取字符
include 判断字符是...
分类:
编程语言 时间:
2015-07-07 16:51:12
阅读次数:
124
不同于采用线性表顺序存储结构的vector和deque容器,list双向链表中任一位置的元素差值、插入和删除,都具有高效的常数阶算法时间复杂度O(1)。
头文件
#include
创建list对象
1)list();//创建一个没有任何元素的list对象。
listl 2)list(size_type n);//创建一个具有n个元素的list对象,每个元素采用它的类型下的默认值。
li...
分类:
编程语言 时间:
2015-07-03 17:32:46
阅读次数:
172
#include #include #include // for memset#include using namespace std;int main(){ int ce[26], co[26]; string encrypted, orginal; string::size_type i, ....
分类:
其他好文 时间:
2015-06-27 15:57:06
阅读次数:
106
demo01:
#include
int main(int argc, char** argv) {
std::string line;
//存string的size用size_type这个类型
std::string::size_type st;
std::cout<<"请输入内容(按“回车键”结束):"<<std::endl;
//获取一行数据
getl...
分类:
编程语言 时间:
2015-06-23 18:07:50
阅读次数:
139
#include #include using namespace std;int main(){ string s, t; string::size_type p, q; while (cin >> s >> t) { p = 0; for (string::const_iterator it.....
分类:
其他好文 时间:
2015-06-23 06:21:44
阅读次数:
117
int replace_str(std::string& str, const char * oldpart, const char * newpart)
{
int nReplaced
= 0;
std::string::size_type nIdx
= 0;
std::string::size_type nOldLen
= strlen(oldpart);
if ( 0...
分类:
其他好文 时间:
2015-06-12 17:30:54
阅读次数:
138
1 #include 2 #include 3 #include 4 #include 5 #include 6 std::string::size_type stringLengthSum(std::string::size_type sumSoFar, const std::stri...
分类:
其他好文 时间:
2015-06-11 12:55:03
阅读次数:
122
控制器调用: function gets() { $model = Model('ap_pic'); $model->select = ' id, size_type '; $gets['page'] = empty($_GET['page'])...
分类:
其他好文 时间:
2015-05-23 12:47:33
阅读次数:
125
1.find_first_ofsize_type find_first_of( const basic_string &str, size_type index = 0 );size_type find_first_of( const char *str, size_type index = 0 )...
分类:
编程语言 时间:
2015-05-22 00:06:16
阅读次数:
182
1 class Solution { 2 public: 3 int minimumTotal(vector > &triangle) { 4 vector> temp(triangle); 5 vector>::size_type length=temp....
分类:
其他好文 时间:
2015-05-15 22:41:34
阅读次数:
146