摘要:
/* 题目: 从扑克牌中随机抽取n个数字,判断他们是否连续,扑克牌从A~K,大小王可代替任意数字。 */ #include<iostream> #include<cstdlib> #include<stack> #include<cstring> #include<vector> #include<
阅读全文
posted @ 2019-12-29 21:26
笨宝宝
阅读(127)
推荐(0)
编辑
摘要:
/* 题目: 计算n个骰子,出现和s的概率。 */ #include<iostream> #include<cstdlib> #include<stack> #include<cstring> #include<vector> #include<deque> #include<cmath> usin
阅读全文
posted @ 2019-12-29 18:07
笨宝宝
阅读(263)
推荐(0)
编辑
摘要:
/* 题目: 定义一个含max函数的队列类,并实现pop_front()、push_back()、max()函数。 */ #include<iostream> #include<cstdlib> #include<stack> #include<string> #include<vector> #i
阅读全文
posted @ 2019-12-29 15:17
笨宝宝
阅读(164)
推荐(0)
编辑
摘要:
/* 题目: 链接:https://www.nowcoder.com/questionTerminal/1624bc35a45c42c0bc17d17fa0cba788 来源:牛客网 给定一个数组和滑动窗口的大小,找出所有滑动窗口里数值的最大值。例如,如果输入数组{2,3,4,2,6,2,5,1}及
阅读全文
posted @ 2019-12-29 14:36
笨宝宝
阅读(147)
推荐(0)
编辑