异常 try { 被检查的语句 } catch(异常信息类型[变量名]) { 进行异常处理的语句 } #include <math.h> #include <iostream> using namespace std; double triangle(double a, double b, doub ...
分类:
其他好文 时间:
2021-05-25 18:14:25
阅读次数:
0
如图效果,两边是四个直角三角形定位拼接出来的 html: <div class="award"> <div class="triangle"> <span class="triangle1"></span> <span class="triangle2"></span> </div> <span c ...
分类:
Web程序 时间:
2021-05-24 08:09:51
阅读次数:
0
1. Things OpenGL Can Render 图中展示了OpenGL 能够渲染三种类型的物体:点、线和三角形 2. Everything's a Triangle 虽然能够渲染三种类型,但是最终复杂的图形通常由三角形构成,图中的矩形和圣诞树都是由三角形构成的: 接下来我们尝试理解一个简单的 ...
分类:
其他好文 时间:
2021-05-24 03:28:25
阅读次数:
0
动态规划题,根据动态规划,选择最短的路径 class Solution { public: int minimumTotal(vector<vector<int>>& triangle) { int n = triangle.size(); vector<int> f(n); f[0] = tria ...
分类:
其他好文 时间:
2021-03-31 12:26:06
阅读次数:
0
Abstract 学习TinyRenderer Wiki中的总结。 扫描线光栅化算法。 Reference : https://github.com/ssloy/tinyrenderer/wiki/Lesson-2-Triangle-rasterization-and-back-face-culli ...
分类:
编程语言 时间:
2021-03-08 14:19:01
阅读次数:
0
(1)二位坐标画图 (最后需有一行plt.show()将图显示) x = np.linspace(-3,3,50) #区间 [-1 1] 平分50个点 y1 = 2*x+1 y2 = x**2 # figure() 定义一张图,可设置序号,长宽等 plt.figure() #定义一张图(下面一行属于 ...
分类:
编程语言 时间:
2021-02-20 12:18:23
阅读次数:
0
import turtle def drawTriangle(num,len,flag):#flag用来调整画三角形的方向 flag*=-1 len/=2 if(num==1): if(flag==1): turtle.left(60) turtle.fd(len) turtle.right(120 ...
分类:
其他好文 时间:
2020-12-19 12:32:01
阅读次数:
1
本组囊括数组相关题目,且只包括两道有关杨辉三角的问题。 118. Pascal's Triangle 题目描述:简单 首先要知道杨辉三角:每个数等于它左上方和右上方两数之和,那么如果能够知道一行杨辉三角,我们就可以根据每对相邻的值轻松地计算出它的下一行。类似这种迭代的思想,官方也把它归到动态规划的思 ...
分类:
编程语言 时间:
2020-11-16 13:13:24
阅读次数:
10
# 可变参数与关键词参数def can_form_triangle(a, b, c): print(f'a = {a}, b = {b}, c = {c}') return a + b > c and b + c > a and a + c > b'''1. 在没有特殊处理的情况下,函数的参数都是位 ...
分类:
编程语言 时间:
2020-11-08 17:09:37
阅读次数:
19
给定一个三角形状的数组,寻找从顶部到底部上所有值之和最小的路径。只能移动至下一层的相邻节点。 ...
分类:
其他好文 时间:
2020-10-26 11:16:51
阅读次数:
18