摘要: string的初始化 string str1 = "hello world"; // str1 = "hello world" string str2("hello world"); // str2 = "hello world" string str3 = str1; // str3 = "hel 阅读全文
posted @ 2022-01-24 17:57 夜灯长明 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 串的定义 串是由零个或多个字符组成的有限序列,又叫字符串 串的比较 给定两个串:s="a1a2a3.....an",t="b1b2b3.....bm",当满足以上条件之一时,s<t 1.n<m,且ai=bi(i=1,2...n) 列如当s="hap",t="happy",就有s<t。因为t比s多出了 阅读全文
posted @ 2022-01-24 16:48 夜灯长明 阅读(272) 评论(0) 推荐(0) 编辑