KDDA十三尧十三
KDDA十三尧十三
全部文章
分类
题解(15)
归档
标签
去牛客网
登录
/
注册
KDDA十三尧十三的博客
全部文章
(共6篇)
题解 | #约数的个数#
#include<iostream> #include<cmath> using namespace std; //用开根号,将时间复杂度降为nlogn int divisor_count(int x) { &n...
C++
数学
数学模拟
2022-02-17
1
442
题解 | #成绩排序#
#include<iostream> #include<cstring> #include<algorithm> #include<vector> using namespace std; //主要在于维持排序稳定 typedef&...
C++
数组
数学
字符串
数学模拟
自定义排序
数学
2022-02-16
2
465
题解 | #复数#
#include<iostream> using namespace std; class Complex { public: double a,b; ...
C++
数学
2022-02-15
1
419
题解 | #日期类#
#include<iostream> using namespace std; //区分闰年,平年中2月的区别,以及月末时期,年末时期的进位 void caculate(int year,int month,int day) {...
C++
数学
2022-02-14
0
384
题解 | #多项式的值#
#include<iostream> #include<cmath> using namespace std; //利用数组下标作为多项式x的次方 int caculate(int arr[],int x,int n...
C++
数学
2022-02-13
1
462
题解 | #球的计算#
#include<iostream> #include<cmath> using namespace std; void caculate(double x,double y,double z,double ...
C++
数学
2022-02-09
1
416