字符串
Nahida_nora
这个作者很懒,什么都没留下…
展开
-
leetcode 3035
统计字符出现的频次,5个a(字符可以成为回文)。将所有字符放在一起考虑,因为字符是可以任意移动。只要奇数个字符的种类,不要超过字符数组的size就可以。原创 2024-03-21 17:17:43 · 220 阅读 · 0 评论 -
c++字符串 size和length的区别
可能length 快些。原创 2023-10-24 10:23:15 · 140 阅读 · 0 评论 -
leetcode 1657
【代码】leetcode 1657。原创 2023-11-30 10:28:08 · 171 阅读 · 0 评论 -
leetcode 318
【代码】leetcode 318。原创 2023-11-08 15:28:31 · 98 阅读 · 0 评论 -
leetcode 187
的字符串变量,并将其初始化为二进制字符串 “00000000000001101111”。A 使用 "00"表示,C使用"01"表示,G使用"10"表示,T使用"11"表示,int 是32bit, 字符串是20bit所以可以用int表示字符串的序列,函数返回的是字符串中字符的数量,而不是字符串占用的字节数。类型使用 UTF-8 编码存储字符串,每个字符可能占用不同数量的字节。类型还提供了其他用于获取字符串信息的成员函数,如。类型的值,表示字符串中字符的数量。成员函数来获取字符串的长度。原创 2023-11-05 13:55:31 · 140 阅读 · 0 评论 -
Leetcode 722. Remove Comments
Leetcode 722. Remove Comments Intuition and Algorithm We need to parse the source line by line. Our state is that we either are in a block comment or not. 一行一行的粘贴,状态只有被注释和没有被注释,两种状态。 If we start a block comment and we aren’t in a block, then we will skip原创 2020-08-04 03:16:10 · 81 阅读 · 0 评论