思路1 借助桶结构,将牌全部放入桶中,判断连续的牌数加上0的牌数等于5一定是顺子,左右非零牌的牌中间的连续区间只要有五个元素就一定是顺子 class Solution { public: bool IsContinuous( vector<int> numbers ) { //使用桶 //A, 2, 3, 4, 5, 6, 7, 8, 9, 10, J, Q, K //A, 2, 3, 4, 5是顺子 vector<int> bucket(13, 0); int count_0 = ...