你能秒我
你能秒我
全部文章
题解
归档
标签
去牛客网
登录
/
注册
你能秒我的博客
全部文章
/ 题解
(共4篇)
题解 | #2的幂次方#非递归解法
看上面的大都是递归解法,我当时是没想出来递归解法的,直接暴力解法,供大家娱乐参考。 正规考试建议还是递归的好。 #include<iostream> #include<string.h> using namespace std; string toBinary(in...
C++
数学
递归
2022-02-13
0
499
题解 | #Old Bill#
#include<iostream> using namespace std; void process(int n, int x, int y, int z) { int maxValue = 0; int left=1, right=0; for(int a...
C++
2022-01-16
0
374
题解 | #与7无关的数#
#include<iostream> using namespace std; int relateSeven(int n) { if(n%7==0){ return 1; } while(n!=0){ if(n%10==7){ ...
C++
2022-01-16
0
372
题解 | #反序数#
此方法比直接temp%10*1000+temp/10%10*100....快,为啥我也不清楚。可能是x/10%10计算多次,耗时较大 // 参考网上代码,非原创 #include<iostream> using namespace std; int Reverse(int n) { ...
C++
2022-01-16
0
326