码迷,mamicode.com
首页 >  
搜索关键字:backward    ( 287个结果
LeetCode 9: Palindrome Number
Description: Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example 1: Example 2 ...
分类:其他好文   时间:2018-08-16 19:37:52    阅读次数:146
海龟绘图法(turtle)
一、引入turtle模块 二、turtle模块中的一些函数 1、向前移动 turtle.forward(distance) turtle.fd(distance) 参数:distance -- 数字(整数或浮点数) 2、向后移动 turtle.back(distance) turtle.bk(dis ...
分类:其他好文   时间:2018-08-10 21:17:48    阅读次数:1926
反向传播
一 预备知识 二 反向传播 取出来一个神经元 Forward pass Backward pass 第一项比较简单,通过已知的函数可以直接求出: 第二项就比较复杂,简单的求解过程如下: 前边的论述是假设有两项是已知的情况,如果不知道呢??? 总结: 参考: http://speech.ee.ntu. ...
分类:其他好文   时间:2018-08-02 00:04:27    阅读次数:178
turtle模块绘图
import turtle #运动命令 # forward(d) 向前移动d长度 # backward(d) 向后移动d长度 # right(d) 向右转动多少度 #left(d) 向左转动多少度 # goto(x,y) 到达指定的坐标 # speed(speed) 笔画绘制的速度[0,10] # ...
分类:其他好文   时间:2018-07-31 21:46:34    阅读次数:113
leetcode 9. Palindrome Number
Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example 1: Input: 121 Output: tru ...
分类:其他好文   时间:2018-07-21 14:41:52    阅读次数:130
Zuma (区间DP)
Genos recently installed the game Zuma on his phone. In Zuma there exists a line of n gemstones, the i-th of which has color ci. The goal of the game ...
分类:其他好文   时间:2018-07-16 21:09:21    阅读次数:294
E - Super Jumping! Jumping! Jumping! <HDU 1087>
E - Super Jumping! Jumping! Jumping! Nowadays, a kind of chess game called “Super Jumping! Jumping! Jumping!” is very popular in HDU. Maybe you are a ...
分类:其他好文   时间:2018-07-07 22:23:33    阅读次数:168
面向对象之继承与派生
阅读目录 一 初识继承 二 继承与抽象(先抽象再继承) 三 继承与重用性 四 派生 五 组合与重用性 六 接口与归一化设计 七 抽象类 八 继承实现的原理(可恶的菱形问题) 九 子类中调用父类的方法 一 初识继承 什么是继承 继承是一种创建新类的方式,新建的类可以继承一个或多个父类(python支持 ...
分类:其他好文   时间:2018-07-05 17:31:37    阅读次数:198
P1118 [USACO06FEB]数字三角形`Backward Digit Su`…
题目描述 FJ and his cows enjoy playing a mental game. They write down the numbers from 11 to N(1 \le N \le 10)N(1≤N≤10) in a certain order and then sum ad ...
分类:其他好文   时间:2018-06-28 20:22:16    阅读次数:171
python1.0-----turtle模块
turtle:绘图模块 可以把绘图的对象理解为一个海龟或者机器人或者笔头,它只能听懂有限的命令。绘图窗口的原点(0,0)在画布正中间,默认的朝向是水平向右。 运动命令: turtle.forward(step):向当前的方向移动step长度。 turtle.backward(step):向当前方向的 ...
分类:编程语言   时间:2018-06-16 23:32:50    阅读次数:330
287条   上一页 1 ... 10 11 12 13 14 ... 29 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!