Computer Science: the Big Picture
1、课程PPT
MIT OpenCourseWare
http://ocw.mit.edu/courses/;
Courses Stanford
http://cs.stanford.edu/courses;
EECS at UC Berkeley
http://www.eecs.berkeley.edu/Scheduling/CS/schedule.html;
CMU Course List
http://www.ece.cmu.edu/courses/index.html;
Computer Science at Illinois
http://cs.illinois.edu/online/academics?quicktabs_9=5
Brown CS Courses
http://cs.brown.edu/courses/
其他,威斯康辛-麦迪逊,Rice,康奈尔,德克萨斯-奥斯丁分校。
2、图书。
进入一门学科的最好办法是读好书。
好书必是行家力作。
非行家不能出好书;虽是行家,但不是力作,也很难是好书。
以阿伦森为主的编写组在社会心理学方面是行家,他们的《社会心理学》出到第五版,则称得上是力作,故是好书。
读一本好书,胜过读一批扰乱视听的混世著作。
金盛华
知名出版社:
Morgan Kauffmann
Addison Welsley
Prentice Hall
McGraw-Hill
MIT Press
Thomson Learning
入门级别:
史蒂夫.麦克康奈尔 代码大全2
Brian W. Kernighan, Dennis M. Ritchie The C Programming Language
进阶:
Computer Systems: A Programmer's Perspective Bryant, Randal E.、 O'Hallaron, David R.
Introduction to Computing Systems: From Bits and Gates to C and Beyond Yale N. Patt, Sanjay J. Patel
Computer Organization and Design: The Hardware/Software Interface David A. Patterson, John L. Hennessy
Database Management Systems Raghu Ramakrishnan, Johannes Gehrke
Database Systems: The Complete Book Jeffrey D. Ullman, Jennifer Widom, Hector Garcia-Molina
Database: Principles, Programming, and Performance Patrick E. O'Neil, Elizabeth O'Neil
Operating Systems: Design and Implementation Albert S. Woodhull, Andrew S. Tanenbaum
The Illustrated Network: How TCP/IP Works in a Modern Network Walter Goralski
Compilers: Principles, Techniques, and Tools Alfred V. Aho, Monica S. Lam, Ravi Sethi, Jeffrey D. Ullman
Engineering a Compiler Keith Cooper, Linda Torczon
Introduction to Algorithms Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, Clifford Stein
Algorithms Robert Sedgewick, Kevin Wayne
The Algorithm Design Manual Steve S. Skiena
高阶:
Computer Architecture: A Quantitative Approach David A. Patterson, John L. Hennessy
Parallel Computer Architecture: A Hardware/Software Approach David Culler, J.P. Singh, Anoop Gupta
Transaction Processing: Concepts and Techniques Jim Gray, Andreas Reuter
The Art of Computer Programming Donald E. Knuth
Optimizing Compilers for Modern Architectures: A Dependence-Based Approach Randy Allen, Ken Kennedy
Computer Networks: A Systems Approach Larry L. Peterson, Bruce S. Davie
Computer Science: the Big Picture的更多相关文章
- Discovering the Computer Science Behind Postgres Indexes
This is the last in a series of Postgres posts that Pat Shaughnessy wrote based on his presentation ...
- [转载] A set of top Computer Science blogs
This started out as a list of top Computer Science blogs, but it more closely resembles a set: the o ...
- Computer Science Theory for the Information Age-4: 一些机器学习算法的简介
一些机器学习算法的简介 本节开始,介绍<Computer Science Theory for the Information Age>一书中第六章(这里先暂时跳过第三章),主要涉及学习以 ...
- Computer Science Theory for the Information Age-1: 高维空间中的球体
高维空间中的球体 注:此系列随笔是我在阅读图灵奖获得者John Hopcroft的最新书籍<Computer Science Theory for the Information Age> ...
- Intro to Computer Science Class Online (CS101) - Udacity
Intro to Computer Science Class Online (CS101) - Udacity Building a Search Engine
- MIT Introduction to Computer Science and Programming (Lesson one )
MIT Introduction to Computer Science and Programming (Lesson one ) 这篇文是记载 MIT 计算机科学及编程导论 第一集 的笔记 Les ...
- CSCI 1100 — Computer Science 1 Homework
CSCI 1100 — Computer Science 1 Homework 8CS1 Multiverse: ClassesOverviewThis homework is worth 100 p ...
- How do you explain Machine Learning and Data Mining to non Computer Science people?
How do you explain Machine Learning and Data Mining to non Computer Science people? Pararth Shah, ...
- Mathematics for Computer Science (Eric Lehman / F Thomson Leighton / Albert R Meyer 著)
I Proofs1 What is a Proof?2 The Well Ordering Principle3 Logical Formulas4 Mathematical Data Types5 ...
随机推荐
- Python 基础学习之if语句
cars=['audi','xiali','bwm','benz',] ##根据要求bmw全部为大写,其他的首字母为大写 for car in cars: if car=='bmw': print(c ...
- 阿里云 Ubuntu14.04 部署 LAMP
1.更新软件源 sudo apt-get update 2.安装Apache sudo apt-get install apache2 3.查看Apache是否安装成功 apache2 –v 如下所示 ...
- java TestNG测试报告美化
测试报告 执行完测试用例之后,会在项目的test-output(默认目录)下生成测试报告 打开index.html文件,测试结果摘要,包括:套件名.测试用例成功数.测试用例失败数.测试用例忽略数和te ...
- Photoshop入门教程(五):滤镜
学习心得:滤镜通常用于摄影行业,是安装在相机镜头前用于过滤自然光的附加镜头,从而获得一些特殊的效果.同理,Photoshop的滤镜也是为了产生特殊的效果.Photoshop滤镜分为两类:一种是内部滤镜 ...
- Photoshop入门教程(四):混合模式
学习心得:混合模式在Photoshop常容易被忽视,最大原因就是它所处的位置比较隐蔽,在图层面板左上部的角落里.使用混合模式,决定图像中上图层像素如何与图像中的下层像素进行混合,使图层的叠加更加炫酷. ...
- 非局部均值(Nonlocal-Mean)
转载自网站:http://www.cnblogs.com/luo-peng/p/4785922.html 非局部均值去噪(NL-means) 非局部均值(NL-means)是近年来提出的一项新型的 ...
- 在MD中使用Emoji
mark语法中支持emoji表情 具体语法是:emoji: 比如我输入 :smile: 就会出现微笑
- SpringMVC自定义多个拦截器执行顺序
一.正常流程下的拦截器(全部放行) 1.springMVC中拦截器实现这个接口HandlerInterceptor 第一个拦截器 HandlerInterceptor1 public class ...
- Mybatis学习笔记14 - 动态sql之foreach标签
一.查询给定集合中员工id对应的所有员工信息 示例代码: 接口定义: package com.mybatis.dao; import com.mybatis.bean.Employee; import ...
- 性能测试工具Jmeter11-Jmeter图形监控扩展
插件下载地址:http://jmeter-plugins.org/downloads/all/ 1.首先将JmeterPluging.jar包复制到Jmeter的Lib目录下面的ext目录下面,然后重 ...