码迷,mamicode.com
首页 >  
搜索关键字:pascals triangle    ( 1342个结果
使用CSS样式,制作六边形
在制作网上中,经常会遇到绘制其它不规则的图形,如六边形,八边形这类的,在复杂的图形,也是由我们的基本图形组成了,如上面的六边形,就是由两个三角形,一个矩形组成。 先看看,如何绘制三角形 ,与四边形。 三角形: <div class="triangle"></div> .triangle{ width ...
分类:Web程序   时间:2017-07-22 21:14:53    阅读次数:261
leetcode笔记:Pascal&#39;s Triangle
一. 题目描写叙述 Given numRows, generate the first numRows of Pascal’s triangle. For example, given numRows = 5, Return: [ [1], [1,1], [1,2,1], [1,3,3,1], [1 ...
分类:其他好文   时间:2017-07-22 09:44:12    阅读次数:168
POJ-1163 The Triangle
Description 73 88 1 02 7 4 44 5 2 6 5(Figure 1) Figure 1 shows a number triangle. Write a program that calculates the highest sum of numbers passed on ...
分类:其他好文   时间:2017-07-18 10:20:31    阅读次数:213
cf682E Alyona and Triangles
You are given n points with integer coordinates on the plane. Points are given in a way such that there is no triangle, formed by any three of these n ...
分类:其他好文   时间:2017-07-12 01:19:11    阅读次数:339
LeetCode-Triangle[dp]
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below. For example, given the fo ...
分类:其他好文   时间:2017-07-09 12:20:55    阅读次数:152
基于C++的多态性动态判断函数
这里先有一个问题: 问题描述:函数int getVertexCount(Shape * b)计算b的顶点数目,若b指向Shape类型,返回值为0;若b指向Triangle类型,返回值为3;若b指向Rectangle类型,返回值为4。 其中,Triangle和Rectangle均继承于Shape类。 ...
分类:编程语言   时间:2017-07-07 23:31:42    阅读次数:226
Direct3D 9 入门样例程序 圆锥体
介绍 Directx3D 9 什么是DirectX,非常好说了,Win32 C++ API。主要是多媒体编程方面的,长处体如今高性能了,如今我知道的版本号最高是D3D11,可是我是学习入门的,从D3D9開始,不算非常是落伍。 Directx3D 元素 D3D元素非常多,这里说的元素是程序中用到的元素 ...
分类:其他好文   时间:2017-07-06 18:42:32    阅读次数:239
LeetCode 120. Triangle 20170706 部分之前做了没写的题目
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below. For example, given the fo ...
分类:其他好文   时间:2017-07-06 10:04:43    阅读次数:113
画三角形
<!DOCTYPE html><html> <head> <style> .triangle { width : 0; height: 0; border : 100px solid transparent; border-top : 100px solid blue; /*这里可以设置border ...
分类:其他好文   时间:2017-07-05 11:34:57    阅读次数:105
1342条   上一页 1 ... 38 39 40 41 42 ... 135 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!