C++
文章平均质量分 57
自由幻想c
这个作者很懒,什么都没留下…
展开
-
qt下bezier曲线的绘制(C++)
bezier曲线在编程中的难点在于求取曲线的系数,如果系数确定了那么就可以用微小的直线段画出曲线。bezier曲线的系数也就是bernstein系数,此系数的性质可以自行百度,我们在这里是利用bernstein系数的递推性质求取。简单举例两个点p0,p1 为一阶曲线 系数为 (1-u)p0+u*p1; 将系数存在数组中b[0] = 1-u b[1]=u三个点 p0 p1 p2原创 2015-11-24 14:46:10 · 4403 阅读 · 1 评论 -
欢迎使用CSDN-markdown编辑器
[LeetCode111]minimum-depth-of-binary-treeGiven a binary tree, find its minimum depth.The minimum depth is the number of nodes along the shortest path from the root node down to the nearest leaf node.原创 2016-09-12 13:00:55 · 220 阅读 · 0 评论