Computer Science Courses – Yan Yan
|
CS: Compilers / Programming Languages |
|||||
|
Course Title Fundamentals of C++ Language Programming |
Textbook
|
||||
|
Institution Beijing University of Technology |
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的更多相关文章
- 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 ...
- Computer Science: the Big Picture
1.课程PPTMIT OpenCourseWarehttp://ocw.mit.edu/courses/; Courses Stanfordhttp://cs.stanford.edu/course ...
- 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 ...
- 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 ...
随机推荐
- 草珊瑚的css基础
首先要了解如下概念: viewport,窗口大小,containing block,block formatting context,inline formatting context,dirctio ...
- CSS3 transition/transform
Transition 1.简写属性transition,可以包括四个属性,这四个属性的顺序按照下面介绍的顺序书写,即transition:property duration timing-functi ...
- Spring管理bean的生命周期
1: bean的创建: 如果我们默认的scope配置为Singleton的话, bean的创建实在Spring容器创建的时候创建: 如果scope的配置为Prototype的话,bena的创建是在 ...
- iOS - Swift Swift 语言新特性
1.Swift 2.0 带来哪些新变化 常规变化: 1.OS X 10.11.iOS 9 和 watchOS 2 SDK 采纳了一些 Objective-C 的特性用来提高 Swift 的编程体验, ...
- NSDate使用
//获取当前日期,时间 +(NSDate *)getCurrentDate{ NSDate *now = [NSDate date]; return now; } //将日期转换为字符 ...
- Codeforces723E One-Way Reform【欧拉回路】
题意:给你n点m边的图,然后让你确定每条边的方向,使得入度=出度的点最多 . 度数为偶数的点均能满足入度 = 出度. 证明:度数为奇数的点有偶数个,奇度点两两配对连无向边,则新图存在欧拉回路,则可使新 ...
- (一)使用springAPI以及自定义类 实现AOP-aop编程
Spring的另一个重要思想是AOP,面向切面的编程,它提供了一种机制,可以在执行业务前后执行另外的代码,Servlet中的Filter就是一种AOP思想的体现,下面通过一个例子来感受一下. 假设我们 ...
- zookeeper错误
ZooKeeper JMX enabled by defaultUsing config: /data4/hadoop/zookeeper-3.4.8/bin/../conf/zoo.cfgError ...
- modernizer的意义
modernizer是一个js文件,会检查当前的浏览器支持什么特性,就在Html标签上添加什么类,然后如果不支持添加no-xxx类,这样,就可以针对两种情况写两种css. http://blog.ch ...
- C/C++中堆与栈
本文介绍C/C++中堆,栈及静态数据区. 五大内存分区 在C++中,内存分成5个区,他们分别是堆.栈.自由存储区.全局/静态存储区和常量存储区.下面分别来介绍: 栈,就是那些由编译器在需要的时候分 ...