三角形模板 const int N = 1e5 + 50; const ld PI = acos(-1.0); const ld eps=1e-8; int sgn(ld x) { if(fabs(x)<eps)return 0; return x<0?-1:1; } struct Point { ...
分类:
其他好文 时间:
2021-06-10 17:53:30
阅读次数:
0
K次圆覆盖问题 模板 #include<bits/stdc++.h> using namespace std; const int maxn=1009; const double eps=1e-8; const double pi=acos(-1); int dcmp(double x) {retu ...
分类:
其他好文 时间:
2021-06-04 19:11:31
阅读次数:
0
#include <bits/stdc++.h> using namespace std; const double EPS = 1e-8; const int N = 1e5+10; struct Point{ double x, y; }; int n; Point p[N]; bool equ ...
分类:
其他好文 时间:
2021-03-10 12:57:35
阅读次数:
0
1 """ 2 python程序的流程 3 """ 4 # 分支结构 5 # if else 6 import math 7 8 x = -37 9 if x < 0: 10 y = math.fabs(x) 11 else: 12 y = math.sqrt(x) 13 print("计算的结果是 ...
分类:
编程语言 时间:
2021-03-09 13:36:20
阅读次数:
0
[可持久化权值线段树] [模板] [指针版本] \[ 1 \leq n \leq 2e5\\ |a_i| \leq 1e9 \] 感觉动态开点用指针好理解一点 代码 #include<bits/stdc++.h> #define eps 1e-8 #define equals(a,b) (fabs( ...
分类:
其他好文 时间:
2021-03-06 14:43:50
阅读次数:
0
const double eps = 1e-8; #define Equ(a,b) ( ( fabs( (a)-(b))) < (eps)) #define More(a,b) ( (a) - (b)) > (eps)) #define Less(a,b) ( (a) - (b)) < (-eps) ...
分类:
其他好文 时间:
2020-09-15 20:59:48
阅读次数:
34
Numpy常用函数 生成函数 作用 np.array( x) np.array( x, dtype) 将输入数据转化为一个ndarray 将输入数据转化为一个类型为type的ndarray np.asarray( array ) 将输入数据转化为一个新的(copy)ndarray np.ones( ...
分类:
其他好文 时间:
2020-08-21 16:37:56
阅读次数:
89
int height(struct TreeNode* root) { if (root == NULL) { return 0; } else { return fmax(height(root->left), height(root->right)) + 1; } } bool isBalanc ...
分类:
其他好文 时间:
2020-08-19 19:58:57
阅读次数:
65
Vertical Order Traversal of a Binary Tree (M) 题目 Given a binary tree, return the vertical order traversal of its nodes values. For each node at positi ...
分类:
其他好文 时间:
2020-08-08 17:30:42
阅读次数:
51
运行结果: 程序代码如下: #将excel中的数据进行读取分析 import openpyxl import numpy as np import math import matplotlib.pyplot as pit wk=openpyxl.load_workbook('信息11.xlsx') ...
分类:
编程语言 时间:
2020-08-03 09:40:29
阅读次数:
78