编程题#2:输出指定结果一来源: 北京大学在线程序评测系统POJ (Coursera声明:在POJ上完成的习题将不会计入Coursera的最后成绩。)总时间限制: 1000ms 内存限制: 1024kB描述填写代码,使输出结果为22810#include using namespace std;cl...
分类:
编程语言 时间:
2015-09-13 17:15:36
阅读次数:
494
编程题#1:输出200来源: 北京大学在线程序评测系统POJ (Coursera声明:在POJ上完成的习题将不会计入Coursera的最后成绩。)总时间限制: 1000ms 内存限制: 1024kB描述使以下代码输出结果为200.#includeusing namespace std;class N...
分类:
编程语言 时间:
2015-09-13 17:10:42
阅读次数:
172
In this project, we will build a version ofPong, one of the first arcade video games (1972). While Pong is not particularly exciting compared to today...
分类:
编程语言 时间:
2015-09-12 22:24:13
阅读次数:
324
课程来自斯坦福大学吴恩达教授 machine learning:https://www.coursera.org/learn/machine-learning/home/welcome多变量线性回归主要包括以下部分:1) Multiple features(多维特征)2) Gradient desc...
分类:
其他好文 时间:
2015-09-10 19:21:14
阅读次数:
260
课程来自斯坦福大学吴恩达教授 machine learning:https://www.coursera.org/learn/machine-learning/home/welcome1) Model representation(模型表示)回到第一课中的房屋价格预测问题, 首先它是一个有监督学习的...
分类:
其他好文 时间:
2015-09-10 15:51:16
阅读次数:
332
Mini-project description - "Stopwatch: The Game"Our mini-project for this week will focus on combining text drawing in the canvas with timers to build...
分类:
编程语言 时间:
2015-09-09 19:32:43
阅读次数:
286
Mini-project description — “Guess the number” gameOne of the simplest two-player games is “Guess the number”. The first player thinks of a secret numb...
分类:
编程语言 时间:
2015-09-09 13:13:40
阅读次数:
264
Mini-project description — Rock-paper-scissors-lizard-SpockRock-paper-scissors is a hand game that is played by two people. The players count to three...
分类:
编程语言 时间:
2015-09-09 13:13:36
阅读次数:
236
编程题#3:Set来源: POJ(Coursera声明:在POJ上完成的习题将不会计入Coursera的最后成绩。)注意: 总时间限制: 5000ms 内存限制: 100000kB描述现有一整数集(允许有重复元素),初始为空。我们定义如下操作:add x 把x加入集合del x 把集合中所有与x相等...
分类:
编程语言 时间:
2015-09-09 13:12:50
阅读次数:
646
取自coursera.org上公开课北京大学《C程序设计进阶》递归调用注意的点1.关注点放在求解的目标上,递推是,目标放在开头2.找到第N次和第(N-1)次之间的关系,通项公式3.给出边界(比如第1次执行结果,斐波那契数列是第1次和第2次结果)#include using namespace std...
分类:
其他好文 时间:
2015-09-08 18:21:10
阅读次数:
207