CS: Compilers / Programming Languages

Course Title

Fundamentals of C++ Language Programming

Textbook

 

Institution

Beijing University of Technology

Semester

Fall 2012

Grade

87

Credit

3

Course Title

Foundation of Program in VC++ .Net

Textbook

 

Institution

Beijing University of Technology

Semester

Spring 2013

Grade

87

Credit

2.5

Course Title

Fundamentals of C# Language Programming

Textbook

 

Institution

Beijing University of Technology

Semester

Fall 2012

Grade

87

Credit

3

 

 

CS: Data Structures & Algorithms

Course Title

Data Structures V

Textbook

 

Institution

Beijing University of Technology

Semester

Fall 2011

Grade

81

Credit

3

Course Title

Principles of Compiling I

Textbook

 

Institution

Beijing University of Technology

Semester

Full 2012

Grade

85

Credit

3.5

Course Title

Object-oriented Programming

Textbook

 

Institution

Beijing University of Technology

Semester

Spring 2012

Grade

88

Credit

3

 

CS: OS / Networking

Course Title

Computer System Architecture

Textbook

 

Institution

Beijing University of Technology

Semester

Full 2012

Grade

90

Credit

2.5

Course Title

Computer Network & Securities

Textbook

 

Institution

Beijing University of Technology

Semester

Full 2010

Grade

81

Credit

2

Course Title

Network Database Programming Design

Textbook

 

Institution

Beijing University of Technology

Semester

Full 2011

Grade

83

Credit

3

 

Computer Science Courses – Yan Yan的更多相关文章

  1. Will Georgia Tech's $7K online M.S. in computer science program make the grade?

    https://newatlas.com/georgia-tech--graduate-computer-science-degree-mooc/28763/ Georgia Tech to offe ...

  2. Computer Science: the Big Picture

    1.课程PPTMIT OpenCourseWarehttp://ocw.mit.edu/courses/; Courses  Stanfordhttp://cs.stanford.edu/course ...

  3. What every computer science major should know 每一个计算机科学专业的毕业生都应该都知道的

    Given the expansive growth in the field, it's become challenging to discern what belongs in a modern ...

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

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

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

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

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

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

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

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

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

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

随机推荐

  1. ubuntu14.04LTS 下storm单机版安装配置

    1.下载storm 的安装文件 http://www.apache.org/dyn/closer.cgi/incubator/storm/apache-storm-0.9.2-incubating/a ...

  2. js打印出对象的方法

    var description = ""; for (var i in order) { var property = order[i]; description += i + & ...

  3. paoracle中的包头(Package)与包体(Package body)

    http://www.th7.cn/db/Oracle/201406/56949.shtml 简单的实例 create or replace package body integrationEgoTo ...

  4. Android是如何绘制View的

    当一个activity获得焦点时, 它会被要求绘制它的布局. Android框架将处理绘制的过程, 但是activity必须提供它的布局体系的根节点. 绘制将从根节点开始, 根节点被要求测量和绘制布局 ...

  5. JAVA获取当前系统时间System.currentTimeMillis()

    System.currentTimeMillis()产生一个当前的毫秒,这个毫秒其实就是自1970年1月1日0时起的毫秒数,Date()其实就是相当于Date(System.currentTimeMi ...

  6. RT-thread学习笔记(一)

    我的基础:能在现有C程序下做些修改,不会移植,不会写驱动,很难从头到尾自己写程序. RT-thread基础:之前看了一点rtthread_manual.zh.pdf(即RT-thread使用手册),发 ...

  7. 【转】 C++中delete和delete[]的区别

    一直对C++中的delete和delete[]的区别不甚了解,今天遇到了,上网查了一下,得出了结论.做个备份,以免丢失. C++告诉我们在回收用 new 分配的单个对象的内存空间的时候用 delete ...

  8. JAVA通过C3P0连接数据库

    配置文件: <?xml version="1.0" encoding="UTF-8"?> <c3p0-config>    <na ...

  9. 数据库中间件mycat简单入门

    当在项目中mysql数据库成为瓶颈的时候,我们一般会使用主从复制,分库分表的方式来提高数据库的响应速度,比如mysql主从复制,在没有数据库中间件的情况下,我们只能由开发工程师在程序中控制,这对于一个 ...

  10. Js作用域链及变量作用域

    要理解变量的作用域范围就得先理解作用域链 用var关键字声明一个变量时,就是为该变量所在的对象添加了一个属性. 作用域链:由于js的变量都是对象的属性,而该对象可能又是其它对象的属性,而所有的对象都是 ...