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的更多相关文章

  1. 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 ...

  2. [转载] 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 ...

  3. Computer Science Theory for the Information Age-4: 一些机器学习算法的简介

    一些机器学习算法的简介 本节开始,介绍<Computer Science Theory for the Information Age>一书中第六章(这里先暂时跳过第三章),主要涉及学习以 ...

  4. Computer Science Theory for the Information Age-1: 高维空间中的球体

    高维空间中的球体 注:此系列随笔是我在阅读图灵奖获得者John Hopcroft的最新书籍<Computer Science Theory for the Information Age> ...

  5. Intro to Computer Science Class Online (CS101) - Udacity

    Intro to Computer Science Class Online (CS101) - Udacity Building a Search Engine

  6. MIT Introduction to Computer Science and Programming (Lesson one )

    MIT Introduction to Computer Science and Programming (Lesson one ) 这篇文是记载 MIT 计算机科学及编程导论 第一集 的笔记 Les ...

  7. CSCI 1100 — Computer Science 1 Homework

    CSCI 1100 — Computer Science 1 Homework 8CS1 Multiverse: ClassesOverviewThis homework is worth 100 p ...

  8. 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, ...

  9. 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 ...

随机推荐

  1. case when null then 'xx' else 'yy' end 无效

    Sql Server 中使用case when then 判断某字段是否为null,和判断是否为字符或数字时的写法不一样,而且语法能正常执行, 如果不注意数据内容,很容易搞错. 错误方法: CASE ...

  2. WebService、WCF、WebAPI、MVC的区别

    Web Service 1.它是基于SOAP协议的,数据格式是XML 2.只支持HTTP协议 3.它不是开源的,但可以被任意一个了解XML的人使用 4.它只能部署在IIS上 WCF 1.这个也是基于S ...

  3. Gone Fishing

    原题网址 代码已经写出来了,自己测试的时候没有问题,提交上去之后反馈了我一个Runtime error  一口老血啊! 找了半天还是没找到可能越界啊啥的地方 import java.util.Scan ...

  4. JVM发展史和Java运行时内存区域

    目前三大主流JVM: Sun HotSpot:Sun于1997年收购Longview Technologies公司所得.Sun于2009年被Oracle收购. BEA JRockit:BEA于2002 ...

  5. Android 中实现分享和第三方登陆---以新浪微博为例

    第三方登陆和分享功能在目前大部分APP中都有,分享功能可以将自己觉得有意义的东西分享给身边的朋友,而第三方登陆可以借助已经有巨大用户基础的平台(如QQ和新浪微博)的账号,让用户在使用自己APP的时候不 ...

  6. 牛客网Java刷题知识点之代码块(局部代码快、构造代码块、静态代码块)

    不多说,直接上干货! 代码块包括局部代码快.构造代码块.静态代码块. 代码块,就是一段独立的代码空间. 1.局部代码快 对局部变量的生命周期进行控制. 2.构造代码块 对所有对象进行初始化. 3.静态 ...

  7. java.lang.IllegalStateException: FragmentManager is already executing transactions 及 SmartTabLayout复用

    在复用 SmartTabLayout  时, 出现了标题所示的错误.首先我的场景是Activity下两个fragment  :A 和 B,A中使用了SmarttabLayout和viewpager结合 ...

  8. pat03-树1. 二分法求多项式单根(20)

    03-树1. 二分法求多项式单根(20) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 Standard 作者 杨起帆(浙江大学城市学院) 二分法求函数根的 ...

  9. 根据时间显示不同的问候语的JavaScript代码

    对于最近有许多的初学开发者问我关于根据时间显示不同的问候语的JavaScript代码问题,所以今天将自己整理的一些代码在这里分享出来,供初学者参考,如果在运行过程中有问题,可以给我在下方留言. < ...

  10. C#中正则表达式的构建与匹配

    使用方法 [1]用用命名空间System.Text.RegularExpressions [2]构造正则表达式 在使用正则表达式时,要先构造正则表达式,这就用到了Regex类,其构建方式有两种: 基本 ...