摘要:Unit1 Getting Started Build a web crawler that will collect data from the web for our search engine. And learn about big ideas in computing. Etraction
阅读全文
摘要:机器学习 Machine learning is widely used for many cool things, such as image and voice recognition, spam detection, fraud detection, stock market, teachin
阅读全文
摘要:1. Setting up the problem Your job is to teach the car how to perceive the world around it. When we drive, we use our eyes to figure out how fast to g
阅读全文
摘要:为了理解数组,先来认识下内存中的“地址” 一. 地址 1.计算机中的内存是以字节为单位的存储空间。内存的每一个字节都有一个唯一的编号,这个编号就称为地址。凡存放在内存中的程序和数据都有一个地址,也就是说,一个函数也有自己的内存地址。 2.当定义一个变量时,系统就分配一个带有唯一地址的存储单元来存储这
阅读全文
摘要:一. 函数的分类 C语言中的函数就是面向对象中的“方法”。 C语言的函数可以大概分为3类:主函数(一定要有),自定义函数(可有可无),C语言提供的库函数(eg:stdio.h中的输出printf()输入函数scanf())。 二. 函数的声明和定义 1. 在java中,每个方法的定义顺序没有限制;而
阅读全文
摘要:1. C语言是1972年发明,首次使用是用于重写UNIX操作系统(UNIX以前是用汇编写的),随着UNIX的成功,C语言也得到了大幅度地推广。C语言是一门面向过程的语言,非面向对象,Objective-C和C++是面向对象的。 2. C语言的特点:丰富的运算符(34种),丰富的数据类型(整型int,
阅读全文