高考到了,祝愿考生能取得自己满意的成绩。 今天完成小学期的第四个任务,只是用函数实现空间几何的部分算法,并无太多难点。代码: #include <iostream>#include <iomanip>using namespace std;class Point{public: double x; ...
分类:
其他好文 时间:
2020-07-07 23:32:56
阅读次数:
64
Beta distribution Probability Gamma distribution Commonly used distributions Commonly used stochastic processes Tangent cone, Tangent cone 2 ...
分类:
其他好文 时间:
2020-07-07 09:28:05
阅读次数:
58
一、首先定义一个log的日志(TLog.java); package entity; import java.util.Date; public class TLog { private Integer id; private String type; private Integer operato ...
分类:
其他好文 时间:
2020-07-07 00:29:09
阅读次数:
71
Docker之Harbor 接着上1、2、3、4章继续研究docker 一:简介 Harbor是一个用于存储和分发Docker镜像的企业级Registry服务器。 镜像的存储harbor使用的是官方的docker registry(v2命名是distribution)服务去完成。harbor在doc ...
分类:
其他好文 时间:
2020-07-06 16:25:13
阅读次数:
76
NX9+VS2012 #include <uf.h> #include <uf_curve.h> UF_initialize(); //三点创建圆弧 double first_point[3] = {-50.0, 0.0, 0.0}; double second_point[3] = {0.0, 5 ...
分类:
其他好文 时间:
2020-07-05 21:30:57
阅读次数:
79
给你一个字符串 S、一个字符串 T,请在字符串 S 里面找出:包含 T 所有字符的最小子串。 示例: 输入: S = "ADOBECODEBANC", T = "ABC"输出: "BANC"说明: 如果 S 中不存这样的子串,则返回空字符串 ""。如果 S 中存在这样的子串,我们保证它是唯一的答案。 ...
分类:
编程语言 时间:
2020-07-05 20:54:07
阅读次数:
70
由于从站点获取到的数据格式存在 二维列表,所以提取出变成一维列表的集中方法记录: 1、列表推导式 ab = [[1,2,3], [4,5], [6,7,8]] print([i for item in ab for i in item]) 2、flatten from compiler.ast im ...
分类:
其他好文 时间:
2020-07-05 15:53:10
阅读次数:
63
Table of Contents 术语 功能点 FP function point 基本概念 应用边界 application boundary 控制信息 Control Information 基本处理过程 elementary process Processing Logic 功能 funct... ...
分类:
其他好文 时间:
2020-07-05 15:08:18
阅读次数:
72
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <style> body{ margin: 0; font-size: 16px; } ul{ list-style: none; margin: 0; paddi ...
分类:
其他好文 时间:
2020-07-04 22:46:43
阅读次数:
77
编写简单的页面 初始化项目文件夹 创建一个文件夹,进入这个文件夹并通过如下命令初始化项目 npm init package name:项目名称,可自设 version:版本号,可自设 description:描述,可不填 entry point:入口文件,这里我们填main.js test comm ...
分类:
其他好文 时间:
2020-07-04 20:48:55
阅读次数:
119