LeetCode 696. 计数二进制子串 [Count Binary Substrings (Easy)]
Posted zsy-blog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 696. 计数二进制子串 [Count Binary Substrings (Easy)]相关的知识,希望对你有一定的参考价值。
给定一个字符串 s,计算具有相同数量0和1的非空(连续)子字符串的数量,并且这些子字符串中的所有0和所有1都是组合在一起的。
重复出现的子串要计算它们出现的次数。
来源:力扣(LeetCode)
class Solution { public: int countBinarySubstrings(string s) { int cnt = 0; int prelen = 0, curlen = 1; for (int i = 1; i < s.size(); ++i) { if (s[i] == s[i - 1]) //统计个数 ++curlen; else { prelen = curlen; curlen = 1; } if (prelen >= curlen) ++cnt; } return cnt; } };
以上是关于LeetCode 696. 计数二进制子串 [Count Binary Substrings (Easy)]的主要内容,如果未能解决你的问题,请参考以下文章
算法千题案例每日LeetCode打卡——89.计数二进制子串
算法千题案例每日LeetCode打卡——89.计数二进制子串