源程序: #include <iostream>#include <fstream>using namespace std; class triangle{private: int a, b, c; double area;public: triangle(int aa, int bb, int c ...
分类:
其他好文 时间:
2020-02-05 20:31:04
阅读次数:
72
976. Largest Perimeter Triangle(三角形的最大周长) 链接 https://leetcode cn.com/problems/largest perimeter triangle 题目 给定由一些正数(代表长度)组成的数组 A,返回由其中三个长度组成的、面积不为零的三角 ...
分类:
其他好文 时间:
2020-02-05 11:29:30
阅读次数:
56
H - Triangle Mr. Frog has n sticks, whose lengths are 1,2, 3??n respectively. Wallice is a bad man, so he does not want Mr. Frog to form a triangle wi ...
1、知乎 Vulkan-高性能渲染 2、Life of a triangle - NVIDIA's logical pipeline 3、Round Robin 算法 4、NVIDIA Developer Vulkan 5、Vulkan SDK Tutorial 6、Vulkan In 30 Min ...
分类:
其他好文 时间:
2020-02-03 10:17:02
阅读次数:
96
交叉类型(Intersection Types) 交叉类型是将多个类型合并为一个类型。 这让我们可以把现有的多种类型叠加到一起成为一种类型,它包含了所需的所有类型的特性。 例如,Person & Serializable & Loggable同时是Person和Serializable和Loggab ...
分类:
其他好文 时间:
2020-01-27 12:22:58
阅读次数:
88
[题目] 如图,正方形 $ABCD$ 的边长为 $1$ ,$P,Q$ 分别为边 $AB,DA$ 上的点.当 $\triangle APQ$ 的周长为 $2$ 时,求 $\angle PCQ$ 的大小. [解析] 设 $\angle DCQ=\alpha , \angle BCP=\beta$ ,则 ...
分类:
其他好文 时间:
2020-01-24 10:53:03
阅读次数:
95
在日常开发中会使用带箭头的弹出对话框,有时为了美观或者突出,会添加一个阴影。由于图形不规则且可能是由多个元素拼接而成的,这样box-shadow属性可能不能满足需求。这里推荐一个类似的属性,filter下的drop-shadow。<divclass="triangle"></div>.triangle{width:200px;height:60px;position:rel
分类:
Web程序 时间:
2020-01-18 01:31:49
阅读次数:
160
题目 https://vjudge.net/problem/Gym-102091F 题意 给出 T 组数据,每组数据给出一个 n,找杨辉三角前 n 层有多少个数是 7 的倍数。 题解 先打表成杨辉三角状找规律,然后会发现是一个以 7 为单位的变化方式,那么递归 *7,同时维护其中有多少个不是 7 的 ...
分类:
其他好文 时间:
2020-01-14 13:03:56
阅读次数:
83
题意: 给出一个边长为a的正方形,其左下角坐标为(0,0),右上角坐标为(a,a)。 此外,再给出一个边长为b的小正方形,以及它的左下角坐标(x,y),其右上角。 坐标为(x+b,y+b),并且保证小正方形一定在大正方形内(有可能会与大正方形的边重合,但不会超出大正方形)。 问是否存在一个在顶点都在 ...
分类:
其他好文 时间:
2020-01-11 11:40:48
阅读次数:
53
#include <iostream> using namespace std;void judge_triangle(int L, int m, int s); // 若函数调用顺序和函数的编写不一致,需要声明函数// 三数排序--从大到小void trangle(int x, int y, in ...
分类:
其他好文 时间:
2020-01-06 19:26:49
阅读次数:
99