一条余弦Cos
一条余弦Cos
全部文章
分类
题解(8)
归档
标签
去牛客网
登录
/
注册
一条余弦Cos的博客
全部文章
(共8篇)
统计每个月兔子总数
include using namespace std; //第month月的兔子数:由上个月生的兔子数count_num(month-1)// 和满足3个月大的兔子生的兔子数 count_num(month-2)int count_num(int month){ if(mont...
2020-12-13
0
563
字符串通配符
采用递归的思路。从前向后依次匹配: 遇到相同字符,都向后移动一个字符; 如果通配符遇到"?",则不需匹配,自动跳过一个字符; 如果通配符遇到"*",则可以匹配任意多个字符,包括0个,此时可以有三种选择: 1.匹配0个,通配符向后移动一个字符,字符串不动; 2.匹配1个,通配符和字符...
2020-12-13
39
3386
统计每个月兔子的总数
#include <iostream> using namespace std; //第month月的兔子数:由上个月生的兔子数count_num(month-1) // 和满足3个月大的兔子生的兔子数 count_num(month-2) int count_num(in...
2020-12-13
0
567
查找输入整数二进制中1的个数
#include<iostream> using namespace std; int main() { int num; while(cin>>num) { //num每右移一位,都与1按位与,其计数结果就是二进制1的个数 ...
位运算
二进制
2020-12-10
0
659
幸运的袋子
#include<iostream> #include<vector> #include<algorithm> using namespace std; vector <int> arr; //全局变量 int bag(int pos,int su...
穷举
剪枝
数学
回溯
2020-12-09
3
755
计算日期到天数的转换
#include<iostream> using namespace std; int main () { //定义day,表示每月的天数 //判断年是否为闰年,是闰年则2月是29天,比和平年多一天 int days[12]={31,28,31,30,31,30...
字符串
闰年
思维
2020-12-09
8
1372
二进制插入
class BinInsert { public: int binInsert(int n, int m, int j, int i) { // write code here // 插入位置 *** ** //1024 ...
位运算
2020-12-05
3
725
查找组成一个偶数最接近的两个素数
从中间n/2向两侧遍历,找到第一组和为n的素数组合就打印即可,一定注意要加break,不然会继续遍历打印其它素数组合Prime_number:判断一个数后是否是素数的标准是看除了1和它本身是否有其它数可以作为它的因数,有的话就不是返回false #include<iostream> #i...
查找
穷举
数学
2020-12-05
1
644