oppo笔试印象

选择

20道考察了计算机组成中,最先存储,最优存储
最小桶排序
平衡二叉树成功比较次数
检索方法r-tree b-tree数组 哈希
计算机网络 传输层 第0层?
操作系统死锁等

笔试第一题

忘记了

笔试第二题

找规律:
第一层循环宏观上遍历6
第二层循环里面进行分类按照6给它分成3种情况
其中最上面的和 最下面的和遍历的6中的数字有关

笔试第三题

oppoppo子串中oppo个数和,思路

#include
#include
using namespace std;
int main(){
	string str;
	cin>>str;
	int index=0;
	int count=0;
	while(index=str.find("oppo",index)<str.size()){
		index++;
		count++;
	}
	cout<<count*(str.size()-4+1);
}

你可能感兴趣的:(算法,数据结构,c++)