1bit与2bit字符——简单模拟题
Posted C+++++++++++++++++++
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1bit与2bit字符——简单模拟题相关的知识,希望对你有一定的参考价值。
文章目录
题目
题目详解
读懂题:
此题是为了让最后以一个字符解码,也就是 0 0 0 ,而含 1 1 1 的只能是两个字符进行解码,所以遇到 1 1 1 就必须确保后面有 0 0 0 或 1 1 1 来用于抵消。
解题法:
- 法一:正向遍历法
直接通过遇到 0 0 0 走一步,遇到 1 1 1 走两步,再看最后是否能恰好走到最后一个 0 0 0 的位置,如果能则 t r u e true true 否则 f a l s e false false 。 - 法二:反向遍历法
由于遇到 0 0 0 能直接跳过,而遇到 1 1 1 则后面必须含有一个字符被抵消,所以为了让最后一个 0 0 0 不被抵消,它前面的连续 1 1 1 应该要为偶数个,否则 0 0 0 将会被抵消。故具体做法直接记录最后一个 0 0 0 前面的 1 1 1 的个数即可得出答案。
解题代码
法一:
class Solution
public:
bool isOneBitCharacter(vector<int>& bits)
int sz = bits.size();
if(sz<2)
return true;
int start = 0;
while(start<sz-1)
if(bits[start]==0)
start++;
else
start += 2;
return start==sz-1;
;
法二:
class Solution
public:
bool isOneBitCharacter(vector<int>& bits)
return find(rbegin(bits)+1, rend(bits), 0) - rbegin(bits) & 1;
;
以上是关于1bit与2bit字符——简单模拟题的主要内容,如果未能解决你的问题,请参考以下文章