KDDA十三尧十三
KDDA十三尧十三
全部文章
分类
题解(15)
归档
标签
去牛客网
登录
/
注册
KDDA十三尧十三的博客
全部文章
(共15篇)
题解 | #约数的个数#
#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> using namespace std; //四年一润,百年不润,四百年再润,例如思考2000年,2100年,2400年与2500年,就理解了能被4整除但不能被100整数了 int m_1[12] = ...
C++
2022-02-11
1
510
题解 | #学生查询#
#include<iostream> using namespace std; typedef struct Student { string name;  ...
C++
2022-02-10
1
481
题解 | #球的计算#
#include<iostream> #include<cmath> using namespace std; void caculate(double x,double y,double z,double ...
C++
数学
2022-02-09
1
416
题解 | #分段函数#
#include<iostream> using namespace std; typedef struct Node { int data; Node * next; Node(int x)  ...
C++
2022-02-07
1
474
题解 | #Problem E#
#include<iostream> #include<stack> #include<vector> using namespace std; //用栈进行括号匹配,只对(,[,{,进行压栈,对),],}进行与栈顶的匹配 int m...
C++
2022-02-01
1
409
首页
上一页
1
2
下一页
末页