Ⅰ 为什么要学习编译原理
大学课程为什么要开设编译原理呢?这门课程关注的是编译器方面的产生原理和技术问题,似乎和计算机的基础领域不沾边,可是编译原理却一直作为大学本科的必修课程,同时也成为了研究生入学考试的必考内容。编译原理及技术从本质上来讲就是一个算法问题而已,当然由于这个问题十分复杂,其解决算法也相对复杂。我们学的数据结构与算法分析也是讲算法的,不过讲的基础算法,换句话说讲的是算法导论,而编译原理这门课程讲的就是比较专注解决一种的算法了。在20世纪50年代,编译器的编写一直被认为是十分困难的事情,第一Fortran的编译器据说花了18年的时间才完成。在人们尝试编写编译器的同时,诞生了许多跟编译相关的理论和技术,而这些理论和技术比一个实际的编译器本身价值更大。就犹如数学家们在解决着名的哥德巴赫猜想一样,虽然没有最终解决问题,但是其间诞生不少名着的相关数论。
推荐参考书
虽然编译理论发展到今天,已经有了比较成熟的部分,但是作为一个大学生来说,要自己写出一个像TurbocC,java那样的编译器来说还是太难了。不仅写编译器困难,学习编译原理这门课程也比较困难。
第一本书的原名叫《CompilersPrinciples,Techniques,andTools》,另外一个响亮的名字就是龙书。原因是这本书的封面上有条红色的龙,也因为獗臼樵诒嘁朐?砘?嘴域确实?忻?所以很多国外的学者都直接取名为龙书。最近机械工业出版社已经出版了此书的中文版,名字就叫《编译原理》。该书出的比较早,大概是在85或86年编写完成的,作者之一还是着名的贝尔实验室的科学家。里面讲解的核心编译原理至今都没有变过,所以一直到今天,它的价值都非凡。这本书最大的特点就是一开始就通过一个实际的小例子,把编译原理的大致内容罗列出来,让很多编译原理的初学者很快心里有了个底,也知道为什么会有这些理论,怎么运用这些理论。而这一点是我感觉国内的教材缺乏的东西,所以国内的教材都不是写给愿意自学的读者,总之让人看了半天,却不知道里面的东西有什么用。
第二本书的原名叫《ModernCompilerDesign》,中文名字叫做《现代编译程序设计》。该书由人民邮电出版社所出。此书比较关注的是编译原理的实践,书中给出了不少的实际程序代码,还有很多实际的编译技术问题等等。此书另外一个特点就是其现代而字。在传统的编译原理教材中,你是不可能看到如同Java中的垃圾回收等算法的。因为Java这样的解释执行语言是在近几年才流行起来的东西。如果你想深入学习编译原理的理论知识,那么你肯定得看前面那本龙书,如果你想自己动手做一个先进的编译器,那么你得看这本《现代编译程序设计》。
第三本书就是很多国内的编译原理学者都推荐的那本《编译原理及实践》。或许是这本书引入国内比较早吧,我记得我是在高中就买了这本书,不过也是在前段时间才把整本书看完。此书作为入门教程也的确是个不错的选择。书中给出的编译原理讲解也相当细致,虽然不如前面的龙书那么深入,但是很多地方都是点到为止,作为大学本科教学已经是十分深入了。该书的特点就是注重实践,不过感觉还不如前面那本《现代编译程序设计》的实践味道更重。此书的重点还是在原理上的实践,而非前面那本那样的技术实践。《编译原理及实践》在讲解编译原理的各个部分的同时,也在逐步实践一个现代的编译器TinyC.等你把整本书看完,差不多自己也可以写一个TinyC了。作者还对Lex和Yacc这两个常用的编译相关的工具进行了很详细的说明,这一点也是很难在国内的教材中看到的。
推荐了这三本教材,都有英文版和中文版的。很多英文好的同学只喜欢看原版的书,不我的感觉是这三本书的翻译都很不错,没有必要特别去买英文版的。理解理论的实质比理解表面的文字更为重要。
编译原理的实质
几乎每本编译原理的教材都是分成词法分析,语法分析(LL算法,递归下降算法,LR算法),语义分析,运行时环境,中间代码,代码生成,代码优化这些部分。其实现在很多编译原理的教材都是按照85,86出版的那本龙书来安排教学内容的,所以那本龙书的内容格式几乎成了现在编译原理教材的定式,包括国内的教材也是如此。一般来说,大学里面的本科教学是不可能把上面的所有部分都认真讲完的,而是比较偏重于前面几个部分。像代码优化那部分东西,就像个无底洞一样,如果要认真讲,就是单独开一个学期的课也不可能讲得清楚。所以,一般对于本科生,对词法分析和语法分析掌握要求就相对要高一点了。
词法分析相对来说比较简单。可能是词法分析程序本身实现起来很简单吧,很多没有学过编译原理的人也同样可以写出各种各样的词法分析程序。不过编译原理在讲解词法分析的时候,重点把正则表达式和自动机原理加了进来,然后以一种十分标准的方式来讲解词法分析程序的产生。这样的做法道理很明显,就是要让词法分析从程序上升到理论的地步。
语法分析部分就比较麻烦一点了。现在一般有两种语法分析算法,LL自顶向下算法和LR自底向上算法。LL算法还好说,到了LR算法的时候,困难就来了。很多自学编译原理的都是遇到LR算法的理解成问题后就放弃了自学。其实这些东西都是只要大家理解就可以了,又不是像词法分析那样非得自己写出来才算真正的会。像LR算法的语法分析器,一般都是用工具Yacc来生成,实践中完全没有比较自己来实现。对于LL算法中特殊的递归下降算法,因为其实践十分简单,那么就应该要求每个学生都能自己写。当然,现在也有不少好的LL算法的语法分析器,不过要是换在非C平台,比如Java,Delphi,你不能运用YACC工具了,那么你就只有自己来写语法分析器。
等学到词法分析和语法分析时候,你可能会出现这样的疑问:词法分析和语法分析到底有什么?就从编译器的角度来讲,编译器需要把程序员写的源程序转换成一种方便处理的数据结构(抽象语法树或语法树),那么这个转换的过程就是通过词法分析和语法分析的。其实词法分析并非一开始就被列入编译器的必备部分,只是我们为了简化语法分析的过程,就把词法分析这种繁琐的工作单独提取出来,就成了现在的词法分析部分。除了编译器部分,在其它地方,词法分析和语法分析也是有用的。比如我们在DOS,Unix,linux下输入命令的时候,程序如何分析你输入的命令形式,这也是简单的应用。总之,这两部分的工作就是把不规则的文本信息转换成一种比较好分析好处理的数据结构。那么为什么编译原理的教程都最终把要分析的源分析转换成树这种数据结构呢?数据结构中有Stack,Line,List这么多数据结构,各自都有各自的特点。但是Tree这种结构有很强的递归性,也就是说我们可以把Tree的任何结点Node提取出来后,它依旧是一颗完整的Tree。这一点符合我们现在编译原理分析的形式语言,比如我们在函数里面使用函树,循环中使用循环,条件中使用条件等等,那么就可以很直观地表示在Tree这种数据结构上。同样,我们在执行形式语言的程序的时候也是如此的递归性。在编译原理后面的代码生成的部分,就会介绍一种堆栈式的中间代码,我们可以根据分析出来的抽象语法树,很容易,很机械地运用递归遍历抽象语法树就可以生成这种指令代码。而这种代码其实也被广泛运用在其它的解释型语言中。像现在流行的Java,.NET,其底层的字节码bytecode,可以说就是这中基于堆栈的指令代码的。
关于语义分析,语法制导翻译,类型检查等等部分,其实都是一种完善前面得到的抽象语法树的过程。比如说,我们写C语言程序的时候,都知道,如果把一个浮点数直接赋值给一个整数,就会出现类型不匹配,那么C语言的编译器是怎么知道的呢?就是通过这一步的类型检查。像C++语言这中支持多态函数的语言,这部分要处理的问题就更多更复杂了。大部编译原理的教材在这部分都是讲解一些比较好的处理策略而已。因为新的问题总是在发生,旧的办法不见得足够解决。
本来说,作为一个编译器,起作用的部分就是用户输入的源程序到最终的代码生成。但是在讲解最终代码生成的时候,又不得不讲解机器运行环境等内容。因为如果你不知道机器是怎么执行最终代码的,那么你当然无法知道如何生成合适的最终代码。这部分内容我自我感觉其意义甚至超过了编译原理本身。因为它会把一个计算机的程序的运行过程都通通排在你面前,你将来可能不会从事编译器的开发工作,但是只要是和计算机软件开发相关的领域,都会涉及到程序的执行过程。运行时环境的讲解会让你更清楚一个计算机程序是怎么存储,怎么装载,怎么执行的。关于部分的内容,我强烈建议大家看看龙书上的讲解,作者从最基本的存储组织,存储分配策略,非局部名字的访问,参数传递,符号表到动态存储分配(malloc,new)都作了十分详细的说明。这些东西都是我们编写平常程序的时候经常要做的事情,但是我们却少去探求其内部是如何完成。
关于中间代码生成,代码生成,代码优化部分的内容就实在不好说了。国内很多教材到了这部分都会很简单地走马观花讲过去,学生听了也只是作为了解,不知道如何运用。不过这部分内容的东西如果要认真讲,单独开一学期的课程都讲不完。在《编译原理及实践》的书上,对于这部分的讲解就恰到好处。作者主要讲解的还是一种以堆栈为基础的指令代码,十分通俗易懂,让人看了后,很容易模仿,自己下来后就可以写自己的代码生成。当然,对于其它代码生成技术,代码优化技术的讲解就十分简单了。如果要仔细研究代码生成技术,其实另外还有本叫做《》,那本书现在由机械工业出版社引进的,十分厚重,而且是英文原版。不过这本书我没有把它列为推荐书给大家,毕竟能把龙书的内容搞清楚,在中国已经就算很不错的高手了,到那个时候再看这本《》也不迟。代码优化部分在大学本科教学中还是一个不太重要的部分,就是算是实践过程中,相信大家也不太运用得到。毕竟,自己做的编译器能正确生成执行代码已经很不错了,还谈什么优化呢?
编译原理的课程毕竟还只是讲解原理的课程,不是专门的编译技术课程。这两门课程是有很大的区别的。编译技术更关注实际的编写编译器过程中运用到的技术,而原理的课
Ⅱ 谁有《编译原理》的教学视频
http://218.64.170.103/dload1.html?cid=
Ⅲ 求编译原理教学视频
优酷上,搜索东南大学编译原理 廖力主讲。
很不错,教材虽然是东南大学自己编着的,但是大多以龙书为蓝本。
Ⅳ 程序员必修的书籍有哪些 最好是能推荐几本好的教程 谢谢...
程序员必修的书籍有哪些 最好是能推荐几本好的教程 谢谢...
p的资料确实很多 我觉得你看书不如看视频直观 更容易理解 我这有php和java的由浅入深的全套视频 你要是想学的话我可以发给你 QQ1620086880
匿名 <span class="tm">5-13 09:16</span>
</p>
<div class="b bt2"><div class="bt bg1 ft"><img alt="其他答案" height="16" src="/static/img/ico2.gif" width="16"/>其他答案</div></div>
<p class="ft bb">你要学什么啊?
程序员必修的书N多
都看恐怕你要看到30岁
喜居宝地千年旺 福照家门万事兴 喜迎新春
Ⅳ 求《编译原理考研辅导教程》全文免费下载百度网盘资源,谢谢~
《编译原理考研辅导教程》网络网盘pdf最新全集下载:
链接:https://pan..com/s/1d6s5KhHw8Ru3mccYMac7ZA
Ⅵ 急急急!求中科大陈意云教授的编译原理教学视频,薯仔上只有前两集,共有25集,谢了![email protected]
陈老师编译原理全部授课内容(点“教学录像”即可看到所有视频链接)网页:http://www.bb.ustc.e.cn/webapps/portal/frameset.jsp?tab_id=_2_1&url=/bin/common/course.pl?course_id%3D_229_1
视频下载方法介绍间此前介绍:http://..com/question/341313017.html?an=0&si=1
本课程“课程教案”中有各章节授课PPT可下载、学习方法、试验指导等
中科大精品课网站:http://www.bb.ustc.e.cn/jpkc/yi_lan.html
各校精品课网站中内容相当丰富,一般包括视频、辅导资料、演示PPT等,内容齐全,是不可多得的知识宝库!
Ⅶ 自考行政管理专科,大家有相关课程的讲课视频或音频吗要全一点的
我自己收藏的,希望对你有用。
大量大学视频教程 让自学充电的朋友们省去几万块学费
计算机类全部,医学,心理学,法学类 ,财经管类 ,广告类,机械类,土木建筑类,电气类,大学英语,大学物理,高等数学,大学化学,哲学,应有尽有。
斯坦福大学着名学者报告会
法 学 类
律师实务(48课时) http://www.da-fan-shu.cn/20091022_284/
法理学(64课时) http://www.da-fan-shu.cn/20091022_302/
公司法(48课时) http://www.da-fan-shu.cn/20091022_298/
合同法(48课时) http://www.da-fan-shu.cn/20091022_299/
劳动法学(48课时) http://www.da-fan-shu.cn/20091022_297/
证据法(48课时) http://www.da-fan-shu.cn/20091022_296/
国际技术贸易法(36课时) http://www.da-fan-shu.cn/20091022_309/
学无止尽 厚积薄发
医 学
金匮要略(25课时) http://www.da-fan-shu.cn/20100401_923/
中医美容学(40课时) http://www.da-fan-shu.cn/20100331_920/
推拿治疗学(26课时) http://www.da-fan-shu.cn/20100330_916/
成人护理学(16课时) http://www.da-fan-shu.cn/20100330_915/
妇产科(16课时) http://www.da-fan-shu.cn/20100324_892/
药用植物学(43课时) http://www.da-fan-shu.cn/20100324_889/
定量生理学(46课时) http://www.da-fan-shu.cn/20100311_657/
传染病学(16课时) http://www.da-fan-shu.cn/20100308_641/
书山有路勤为径
心 理 学
管理心理学(35课时) http://www.da-fan-shu.cn/20091022_363/
社会心理学(32课时) http://www.da-fan-shu.cn/20091022_475/
消费心理学(20课时) http://www.da-fan-shu.cn/20091022_492/
教育心理学(20课时) http://www.da-fan-shu.cn/20091022_535/
儿童发展心理学(12课时) http://www.da-fan-shu.cn/20100316_764/
旅游心理学(8课时) http://www.da-fan-shu.cn/20100321_854/
学海无涯苦作舟
广 告 类
影视广告设计与制作(10课时) http://www.da-fan-shu.cn/20100319_812/
广告摄影(24课时) http://www.da-fan-shu.cn/20100316_772/
广告设计(20课时) http://www.da-fan-shu.cn/20100316_771/
广告概论(6课时) http://www.da-fan-shu.cn/20100316_770/
广播电视广告业务(8课时) http://www.da-fan-shu.cn/20100316_767/
广告策划(20课时) http://www.da-fan-shu.cn/20091022_505/
广告经营(20课时) http://www.da-fan-shu.cn/20091022_487/
北京大学校园
计算机类
数据结构(37课时) http://www.da-fan-shu.cn/20100415_952/
汇编语言 (44课时) http://www.da-fan-shu.cn/20100415_948/
计算机组成原理 (50课时) http://www.da-fan-shu.cn/20100327_905/
计算机文化基础(28课时) http://www.da-fan-shu.cn/20100326_902/
程序设计基础(42 课时) http://www.da-fan-shu.cn/20100326_900/
IBM-PC汇编语言程序(44课时) http://www.da-fan-shu.cn/20100303_593/
信息科学基础(49课时) http://www.da-fan-shu.cn/20091022_450/
线性代数与数理统计(51课时) http://www.da-fan-shu.cn/20100303_595/
计算机专业英语 (48课时) http://www.da-fan-shu.cn/20100303_589/
web技术基础(38课时) http://www.da-fan-shu.cn/20100303_588/
数据库原理及应用(25课时) http://www.da-fan-shu.cn/20091022_448/
internet实用技术(37课时) http://www.da-fan-shu.cn/20091022_447/
编译原理(40课时) http://www.da-fan-shu.cn/20091022_446/
汇编语言(64课时) http://www.da-fan-shu.cn/20091022_445/
计算机软件基础(54课时) http://www.da-fan-shu.cn/20091022_444/
有限元及程序设计(54课时) http://www.da-fan-shu.cn/20091022_443/
微机原理(47课时) http://www.da-fan-shu.cn/20091022_442/
网络营销(49课时) http://www.da-fan-shu.cn/20091022_441/
操作系统(47课时) http://www.da-fan-shu.cn/20091022_440/
数据通信与网络(40课时) http://www.da-fan-shu.cn/20091022_439/
信息管理学(27课时) http://www.da-fan-shu.cn/20091022_438/
网页设计与制作(53课时) http://www.da-fan-shu.cn/20091022_437/
数据库语言(55课时) http://www.da-fan-shu.cn/20091022_436/
C语言(32课时) http://www.da-fan-shu.cn/20091022_435/
软件工程(40课时) http://www.da-fan-shu.cn/20091022_434/
嵌入式系统(25课时)
http://www.da-fan-shu.cn/20100310_652/
财 经 管 类
市场营销学(60课时) http://www.da-fan-shu.cn/20100409_939/
会计学基础(58课时) http://www.da-fan-shu.cn/20091022_326/
经贸知识英语(57课时) http://www.da-fan-shu.cn/20091022_325/
国际市场营销(43课时) http://www.da-fan-shu.cn/20091022_327/
网络营销模拟(49课时) http://www.da-fan-shu.cn/20091022_441/
政府与事业单位会计(64课时) http://www.da-fan-shu.cn/20091022_329/
西方财务会计(45课时) http://www.da-fan-shu.cn/20091022_329/
高级财务会计(47课时) http://www.da-fan-shu.cn/20091022_331/
高级审计学(48课时) http://www.da-fan-shu.cn/20091022_332/
成本会计(42课时) http://www.da-fan-shu.cn/20091022_334/
英国牛津大学
机 械 类
互换性与测量技术(38课时) http://www.da-fan-shu.cn/20100417_959/
机械制造工艺学(35课时) http://www.da-fan-shu.cn/20100415_950/
工程热力学(53课时) http://www.da-fan-shu.cn/20100331_922/
工程材料(40课时) http://www.da-fan-shu.cn/20100330_919/
自动控制原理(25课时) http://www.da-fan-shu.cn/20100330_918/
汽车理论基础(36课时) http://www.da-fan-shu.cn/20100329_911/
工程力学(48课时) http://www.da-fan-shu.cn/20091022_281/
计算机辅助设计(38课时) http://www.da-fan-shu.cn/20091022_280/
机械制图(40课时) http://www.da-fan-shu.cn/20091022_279/
弹性力学(58课时) http://www.da-fan-shu.cn/20100327_906/
理论力学 (72课时) http://www.da-fan-shu.cn/20100322_879/
机械设计(64课时) http://www.da-fan-shu.cn/20091022_278/
控制工程(60课时) http://www.da-fan-shu.cn/20091022_277/
数控机床故障诊断与维修(8课时) http://www.da-fan-shu.cn/20100320_823/
电机学(32课时) http://www.da-fan-shu.cn/20091022_275/
机床概论(26课时) http://www.da-fan-shu.cn/20091022_274/
工程测试技术基础(12课时) http://www.da-fan-shu.cn/20100325_897/
苏塞克斯大学校园
土木建筑类
土木工程概论(22课时) http://www.da-fan-shu.cn/20100416_957/
桥梁施工技术(26课时) http://www.da-fan-shu.cn/20100416_958/
工程地质(20课时) http://www.da-fan-shu.cn/20100416_956/
建筑制图(上)(35课时) http://www.da-fan-shu.cn/20091022_421/ l
建筑制图(下)(26课时) http://www.da-fan-shu.cn/20091022_422/
材料力学(48课时) http://www.da-fan-shu.cn/20091022_420/
混凝土结构(31课时) http://www.da-fan-shu.cn/20100402_926/
抗震结构设计(30课时) http://www.da-fan-shu.cn/20091022_418/
钢结构(31课时) http://www.da-fan-shu.cn/20091022_417/
建筑设备(32课时) http://www.da-fan-shu.cn/20091022_416/
土力学与地基基础(64课时) http://www.da-fan-shu.cn/20091022_415/
工程监督概论(48课时) http://www.da-fan-shu.cn/20091022_414/
建筑环境学(30课时) http://www.da-fan-shu.cn/20100323_886/
工程概预算(37课时) http://www.da-fan-shu.cn/20091022_412/
钢筋混泥土结构(52课时) http://www.da-fan-shu.cn/20091022_411/
结构力学(45课时) http://www.da-fan-shu.cn/20091022_410/
房屋建筑学(51课时) http://www.da-fan-shu.cn/20091022_409/
混泥土结构与砌体结构(50课时) http://www.da-fan-shu.cn/20091022_408/
结构计算软件(15课时) http://www.da-fan-shu.cn/20091022_425/
定性结构力学(12课时) http://www.da-fan-shu.cn/20100323_883/
复旦大学
电 气 类
电子信息工程导论 (24课时) http://www.da-fan-shu.cn/20100417_963/
集成电路及应用(32课时) http://www.da-fan-shu.cn/20100417_962/
电子线路EDA (35课时) http://www.da-fan-shu.cn/20100417_961/
电路基础(54课时) http://www.da-fan-shu.cn/20091022_538/
电工技术(45课时) http://www.da-fan-shu.cn/20091022_536/
电子技术(64课时) http://www.da-fan-shu.cn/20091022_537/
现代检测技术(37课时) http://www.da-fan-shu.cn/20100417_960/
美国哈弗大学
其 它 视 频
大学英语 http://www.da-fan-shu.cn/20091022_461/
大学语文 http://www.da-fan-shu.cn/20091022_462/
大学物理 http://www.da-fan-shu.cn/20091022_467/
高等数学 (44课时) http://www.da-fan-shu.cn/20100306_612/
离散数学(55课时) http://www.da-fan-shu.cn/20091022_468/
美术基础(2课时) http://www.da-fan-shu.cn/20091022_495/
素描(10课时) http://www.da-fan-shu.cn/20091022_494/
大学化学 http://www.da-fan-shu.cn/20091022_500/
硬笔书法 http://www.da-fan-shu.cn/20091022_516/
变化中的英语 http://www.da-fan-shu.cn/20091022_512/
高级日常英语 http://www.da-fan-shu.cn/20091022_511/
哲学 http://www.da-fan-shu.cn/20091022_478/
常言道:"书山有路勤为径,学海无涯苦作舟。"无止境地学习,是每一个智者所必需的。人要想不断地进步,就得活到老、学到老。
此贴对学习很有用,真的很有用,如果你觉得对你有帮助的话,请分享给你的同学朋友,人生因你而改变!
Ⅷ 网络基础知识视频教程下载
视频学习大全--and--小说大全
资源名称---计算机方面学习视频资料
PHP视频教程从入门到精通
http://www.xuexinet.com/document/xuexidetail.asp?id=21
ORACLE内部培训视频教学
http://www.xuexinet.com/document/xuexidetail.asp?id=36
常用网络命令音频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=41
新编Premiere.Pro入门与提高
http://www.xuexinet.com/document/xuexidetail.asp?id=53
新概念SQL.Server.2000教程
http://www.xuexinet.com/document/xuexidetail.asp?id=71
西北工业大学-编译原理 48课
http://www.xuexinet.com/document/xuexidetail.asp?id=72
专业工程师拆解笔记本视频
http://www.xuexinet.com/document/xuexidetail.asp?id=79
Cisco官方出版的CCNA/CCNP教材
http://www.xuexinet.com/document/xuexidetail.asp?id=81
数据库原理视频教程在线播放[北京交通大学]
http://www.xuexinet.com/document/xuexidetail.asp?id=86
mysql数据库视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=87
数据库原理与应用视频教程下载[北师大]
http://www.xuexinet.com/document/xuexidetail.asp?id=88
《Visual Foxpro》 31讲
http://www.xuexinet.com/document/xuexidetail.asp?id=91
ASP 数据库编程入门视频教程*
http://www.xuexinet.com/document/xuexidetail.asp?id=92
PowerBuilder视频教程在线播放
http://www.xuexinet.com/document/xuexidetail.asp?id=93
VFP6.0视频教程下载
http://www.xuexinet.com/document/xuexidetail.asp?id=94
数据结构教学录像c++版
http://www.xuexinet.com/document/xuexidetail.asp?id=95
网页设计在线教程
http://www.xuexinet.com/document/xuexidetail.asp?id=103
使用Visual Studio .NET进行调试
http://www.xuexinet.com/document/xuexidetail.asp?id=193
protel 2004 光盘教程
http://www.xuexinet.com/document/xuexidetail.asp?id=194
PHP动态网页制作
http://www.xuexinet.com/document/xuexidetail.asp?id=195
ASP动态网页制作计
http://www.xuexinet.com/document/xuexidetail.asp?id=196
JSP动态网页制作
http://www.xuexinet.com/document/xuexidetail.asp?id=197
Perl动态网页制作
http://www.xuexinet.com/document/xuexidetail.asp?id=200
汇编语言程序设计
http://www.xuexinet.com/document/xuexidetail.asp?id=201
逐步精通数据库(sql server)
http://www.xuexinet.com/document/xuexidetail.asp?id=202
linux安装的全程演示录像(9.0)*
http://www.xuexinet.com/document/xuexidetail.asp?id=203
网络工程考试视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=204
计算机操作系统视频讲座(清华大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=205
101-VF程序设计视频课程
http://www.xuexinet.com/document/xuexidetail.asp?id=207
接口技术视频讲座
http://www.xuexinet.com/document/xuexidetail.asp?id=208
软件工程40讲 (西北工大)
http://www.xuexinet.com/document/xuexidetail.asp?id=209
使用DM万用版给硬盘分区 视程
http://www.xuexinet.com/document/xuexidetail.asp?id=210
汇编与微机接口 64讲
http://www.xuexinet.com/document/xuexidetail.asp?id=211
手把手教你配置路由器
http://www.xuexinet.com/document/xuexidetail.asp?id=212
VB程序设计视频讲座
http://www.xuexinet.com/document/xuexidetail.asp?id=213
新概念Dreamweaver_mx视频教程(已失效)
http://www.xuexinet.com/document/xuexidetail.asp?id=217
孙鑫VC++
http://www.xuexinet.com/document/xuexidetail.asp?id=230
边用边学visual basic 6
http://www.xuexinet.com/document/xuexidetail.asp?id=236
边用边学Powerbuilder编程
http://www.xuexinet.com/document/xuexidetail.asp?id=237
边用边学C语言
http://www.xuexinet.com/document/xuexidetail.asp?id=238
边用边学Java程序设计基础
http://www.xuexinet.com/document/xuexidetail.asp?id=239
边用边学C++语言基础教程
http://www.xuexinet.com/document/xuexidetail.asp?id=240
边用边学Autocad
http://www.xuexinet.com/document/xuexidetail.asp?id=241
边用边学Linux
http://www.xuexinet.com/document/xuexidetail.asp?id=242
Windowsxp中文版入门与提高
http://www.xuexinet.com/document/xuexidetail.asp?id=243
Photoshop CS2 标准教程
http://www.xuexinet.com/document/xuexidetail.asp?id=244
【用Ghost备份和恢复系统】视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=248
硬盘分区与格式化探悉
http://www.xuexinet.com/document/xuexidetail.asp?id=249
WinXp安装全过程
http://www.xuexinet.com/document/xuexidetail.asp?id=250
winxp优化大全
http://www.xuexinet.com/document/xuexidetail.asp?id=251
使用DM万用版给硬盘分区
http://www.xuexinet.com/document/xuexidetail.asp?id=252
常用网络命令视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=254
编程之道—JSP数据库编程入门(iso)
http://www.xuexinet.com/document/xuexidetail.asp?id=255
企业网络系统与集成
http://www.xuexinet.com/document/xuexidetail.asp?id=256
高速宽带主干网技术专题视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=257
SQL数据库视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=260
微软开发者系列讲座---WEB Service高级应用
http://www.xuexinet.com/document/xuexidetail.asp?id=303
Flashmx 2004 视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=314
计算机图形学
http://www.xuexinet.com/document/xuexidetail.asp?id=316
电子科大--- VB程序设计
http://www.xuexinet.com/document/xuexidetail.asp?id=317
EDA技术
http://www.xuexinet.com/document/xuexidetail.asp?id=318
unix操作系统(电子科技大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=319
多媒体技术(电子科技大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=320
计算机操作系统(电子科技大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=321
计算机网络基础(电子科技大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=322
计算机系统结构
http://www.xuexinet.com/document/xuexidetail.asp?id=324
计算机组成原理
http://www.xuexinet.com/document/xuexidetail.asp?id=325
嵌入式系统应用与开发技术
http://www.xuexinet.com/document/xuexidetail.asp?id=326
软件工程(电子科技大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=327
微机原理与接口技术
http://www.xuexinet.com/document/xuexidetail.asp?id=328
洪恩编程之道 delphi7
http://www.xuexinet.com/document/xuexidetail.asp?id=347
不背字根学五笔视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=354
网页设计(制作)
http://www.xuexinet.com/document/xuexidetail.asp?id=369
程序设计语言
http://www.xuexinet.com/document/xuexidetail.asp?id=410
组成与系统结构
http://www.xuexinet.com/document/xuexidetail.asp?id=411
多媒体技术(西北工业大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=412
汇编与微机接口
http://www.xuexinet.com/document/xuexidetail.asp?id=413
计算机软件技术基础
http://www.xuexinet.com/document/xuexidetail.asp?id=414
计算机软件技术基础辅导
http://www.xuexinet.com/document/xuexidetail.asp?id=416
网络支付与结算48讲(北京交通大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=417
计算机网络[北方交通大学]
http://www.xuexinet.com/document/xuexidetail.asp?id=491
洪恩开天辟地.4.零售版(8CD)
http://www.xuexinet.com/document/xuexidetail.asp?id=535
面向对象C++(陈文宇)(电子科技大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=581
数据结构(罗吴蔓)
http://www.xuexinet.com/document/xuexidetail.asp?id=582
程序设计语言与编译
http://www.xuexinet.com/document/xuexidetail.asp?id=583
DOS 学习视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=615
计算机网页设计与制作视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=616
单片机及应用辅导课程
http://www.xuexinet.com/document/xuexidetail.asp?id=618
自己动手建立个人网站
http://www.xuexinet.com/document/xuexidetail.asp?id=619
c语言14讲
http://www.xuexinet.com/document/xuexidetail.asp?id=630
高级操作系统(北大-辛辛那提大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=631
边学边用Photoshop7.0视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=632
洪恩编程之道 delphi7 视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=633
数据库应用程序设计
http://www.xuexinet.com/document/xuexidetail.asp?id=634
数字视频应用教程
http://www.xuexinet.com/document/xuexidetail.asp?id=635
中文AutoCAD 2005基础操作与实例教程
http://www.xuexinet.com/document/xuexidetail.asp?id=636
3ds max 6标准教程
http://www.xuexinet.com/document/xuexidetail.asp?id=637
Premiere 6.x 标准教程
http://www.xuexinet.com/document/xuexidetail.asp?id=638
华南理工大学-c#和.net技术与应用
http://www.xuexinet.com/document/xuexidetail.asp?id=639
Adobe Photoshop CS2官方视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=640
微计算机技术
http://www.xuexinet.com/document/xuexidetail.asp?id=641
软件开发工具与环境
http://www.xuexinet.com/document/xuexidetail.asp?id=642
计算机图像处理
http://www.xuexinet.com/document/xuexidetail.asp?id=653
边学边用LINUX
http://www.xuexinet.com/document/xuexidetail.asp?id=654
计算机组成与汇编语言程序设计(赵丽梅)宁波电大
http://www.xuexinet.com/document/xuexidetail.asp?id=665
操作系统(陈访荣)宁波电大
http://www.xuexinet.com/document/xuexidetail.asp?id=666
计算机网络(马敏飞)宁波电大
http://www.xuexinet.com/document/xuexidetail.asp?id=667
VB编程与应用(黄文)宁波电大
http://www.xuexinet.com/document/xuexidetail.asp?id=668
Internet和Intranet应用(薛昭旺)宁波电大
http://www.xuexinet.com/document/xuexidetail.asp?id=669
并行程序设计(北大)
http://www.xuexinet.com/document/xuexidetail.asp?id=670
计算机专业英语/宁波电大
http://www.xuexinet.com/document/xuexidetail.asp?id=671
计算机辅助设计Autocad[宁波电大]
http://www.xuexinet.com/document/xuexidetail.asp?id=674
计算机组成原理[宁波电大]
http://www.xuexinet.com/document/xuexidetail.asp?id=675
数据结构(冯姚震)宁波电大
http://www.xuexinet.com/document/xuexidetail.asp?id=676
面向对象程序设计(黄寅)宁波电大
http://www.xuexinet.com/document/xuexidetail.asp?id=677
操作系统(华南理工大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=686
操作系统(华中科大)
http://www.xuexinet.com/document/xuexidetail.asp?id=687
第三代无线数据通讯的前景与机会(华南理工)
http://www.xuexinet.com/document/xuexidetail.asp?id=688
高等计算机的核心技术-并行处理(清华)
http://www.xuexinet.com/document/xuexidetail.asp?id=689
多媒体(华中科大)
http://www.xuexinet.com/document/xuexidetail.asp?id=690
高速网络与移动计算(香港城市大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=691
汇编程序设计(北大)
http://www.xuexinet.com/document/xuexidetail.asp?id=692
计算机网络(华中科大)
http://www.xuexinet.com/document/xuexidetail.asp?id=712
北京交通大学-PASCAL语言程序设计
http://www.xuexinet.com/document/xuexidetail.asp?id=715
JAVA程序设计(北京交通大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=716
演示安装红旗Linux
http://www.xuexinet.com/document/xuexidetail.asp?id=719
ASP高级编程课程讲解
http://www.xuexinet.com/document/xuexidetail.asp?id=724
计算机体系结构(北京交通大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=790
吉林大学-高等计算机系统结构
http://www.xuexinet.com/document/xuexidetail.asp?id=791
人工智能导论
http://www.xuexinet.com/document/xuexidetail.asp?id=855
微机组装与维护
http://www.xuexinet.com/document/xuexidetail.asp?id=856
计算机网络工程
http://www.xuexinet.com/document/xuexidetail.asp?id=857
Internet和Internet应用
http://www.xuexinet.com/document/xuexidetail.asp?id=858
网络数据库系统概论-SQL Server
http://www.xuexinet.com/document/xuexidetail.asp?id=859
超级注册表实用大全ISO
http://www.xuexinet.com/document/xuexidetail.asp?id=906
动态网页制作视频教程ASP.PHP.JSP.Perl
http://www.xuexinet.com/document/xuexidetail.asp?id=908
浙大-计算机网络
http://www.xuexinet.com/document/xuexidetail.asp?id=930
计算机网络基础
http://www.xuexinet.com/document/xuexidetail.asp?id=931
Windows 2000 教学[FLASH]200分钟
http://www.xuexinet.com/document/xuexidetail.asp?id=932
中央电大-网络操作系统
http://www.xuexinet.com/document/xuexidetail.asp?id=933
浙大-计算机应用基础(2)
http://www.xuexinet.com/document/xuexidetail.asp?id=935
西南交通大学-通信原理
http://www.xuexinet.com/document/xuexidetail.asp?id=936
HTML的全局架构视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=938
Photoshop数码照片艺术效果100例(精彩版)
http://www.xuexinet.com/document/xuexidetail.asp?id=944
吉林大学-internet网页设计
http://www.xuexinet.com/document/xuexidetail.asp?id=945
手把手教你学JAVA程序设计[swf][7课]
http://www.xuexinet.com/document/xuexidetail.asp?id=946
台湾国立嘉艺大学-maya中文视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=947
手把手教你学VC程序设计[swf][8课]
http://www.xuexinet.com/document/xuexidetail.asp?id=948
马鞍山电大-信号处理原理
http://www.xuexinet.com/document/xuexidetail.asp?id=950
[西南师大]计算机网络理论 [19讲]
http://www.xuexinet.com/document/xuexidetail.asp?id=961
电子科大-移动通信系统
http://www.xuexinet.com/document/xuexidetail.asp?id=962
北京师范大-多媒体视频
http://www.xuexinet.com/document/xuexidetail.asp?id=963
C语言(北京交通大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=987
数据库应用基础(北京交通大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=988
计算机文化基础(北京交通大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=990
Powerpoint国外系列精美模版
http://www.xuexinet.com/document/xuexidetail.asp?id=991
计算机组成原理(北京交通大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=992
编译原理(北京交通大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=996
数据结构(北京交通大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=997
汇编语言(北京交通大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=998
网页制作技术(北京交通大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=1007
计算机与网络系统安全(北京交通大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=1008
面向对象程序设计与C++(北京交通大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=1009
清华大学 吴企渊计算机操作系统
http://www.xuexinet.com/document/xuexidetail.asp?id=1010
操作系统(北京交通大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=1011
Authorware金鹰视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=1030
金鹰工作室Freehand MX快速入门视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=1031
PowerPoint2003视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=1032
ASP视频教程下载 北京大学尚俊杰
http://www.xuexinet.com/document/xuexidetail.asp?id=1033
金鹰电脑教程Flash编程视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=1034
数据库概论(江南大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=1045
软件工程(江南大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=1046
人工智能概论(江南大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=1047
计算机组成与结构(江南大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=1048
计算机基础(江南大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=1049
多媒体技术(江南大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=1050
边学边用PowerPoint 2000
http://www.xuexinet.com/document/xuexidetail.asp?id=1062
dreamwaverMX全部教程下载
http://www.xuexinet.com/document/xuexidetail.asp?id=1073
结构计算软件
http://www.xuexinet.com/document/xuexidetail.asp?id=1074
软件工程
http://www.xuexinet.com/document/xuexidetail.asp?id=1075
Java语言与WWW技术
http://www.xuexinet.com/document/xuexidetail.asp?id=1076
信息技术专题
http://www.xuexinet.com/document/xuexidetail.asp?id=1077
Internet与Web站点设计
http://www.xuexinet.com/document/xuexidetail.asp?id=1078
多媒体课件制作与应用
http://www.xuexinet.com/document/xuexidetail.asp?id=1079
四川电大 算法分析与设计(在线播放)
http://www.xuexinet.com/document/xuexidetail.asp?id=1080
计算机应用基础
http://www.xuexinet.com/document/xuexidetail.asp?id=1081
计算机图形学基础
http://www.xuexinet.com/document/xuexidetail.asp?id=1082
多媒体技术基础与应用IP
http://www.xuexinet.com/document/xuexidetail.asp?id=1083
JAVA 入门视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=1084
Photoshop从头学起系列教程
http://www.xuexinet.com/document/xuexidetail.asp?id=1085
四川电大 计算机专业英语(在线播放)
http://www.xuexinet.com/document/xuexidetail.asp?id=1088
四川电大 单片机技术(在线播放)
http://www.xuexinet.com/document/xuexidetail.asp?id=1089
四川电大 信息系统测试(在线播放)
http://www.xuexinet.com/document/xuexidetail.asp?id=1090
四川电大 Asp程序设计基础(在线播放)
http://www.xuexinet.com/document/xuexidetail.asp?id=1091
四川电大 计算机组装与维护(在线播放)
http://www.xuexinet.com/document/xuexidetail.asp?id=1092
四川电大 Internet网络系统与实践(在线播放)
http://www.xuexinet.com/document/xuexidetail.asp?id=1093
四川电大 计算机电路基础(在线播放)
http://www.xuexinet.com/document/xuexidetail.asp?id=1094
吉大 windows程序设计
http://www.xuexinet.com/document/xuexidetail.asp?id=1115
WEB应用系统设计(东南大学)
http://www.xuexinet.com/document/xuexidetail.asp?id=1136
DELPHI程序设计
http://www.xuexinet.com/document/xuexidetail.asp?id=1141
C++语言程序设计视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=1142
JAVA视频教学
http://www.xuexinet.com/document/xuexidetail.asp?id=1143
delphi7.0视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=1144
BIOS视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=1145
NET系统架构与开发
http://www.xuexinet.com/document/xuexidetail.asp?id=1146
磁盘阵列安装视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=1147
JAVA语言编程
http://www.xuexinet.com/document/xuexidetail.asp?id=1148
计算机安全视频培训
http://www.xuexinet.com/document/xuexidetail.asp?id=1149
PHOTOSHOP7.0 FLASH教程
http://www.xuexinet.com/document/xuexidetail.asp?id=1150
vc++面向对象与可视化程序设计
http://www.xuexinet.com/document/xuexidetail.asp?id=1151
服务器群组微软件视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=1152
电脑安装与维修实用技术
http://www.xuexinet.com/document/xuexidetail.asp?id=1153
Photoshop7.01影像处理(百事达)
http://www.xuexinet.com/document/xuexidetail.asp?id=1154
Microsoft软件开发过程
http://www.xuexinet.com/document/xuexidetail.asp?id=1155
风之行——Maya大型视频教学风暴
http://www.xuexinet.com/document/xuexidetail.asp?id=1156
计算机应用基础视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=1157
单片机技术
http://www.xuexinet.com/document/xuexidetail.asp?id=1158
用SERV_U架设FTP服务器视频
http://www.xuexinet.com/document/xuexidetail.asp?id=1159
局域网组网精彩视频教学
http://www.xuexinet.com/document/xuexidetail.asp?id=1161
动态网页制作视频教程ASP.PHP.JSP
http://www.xuexinet.com/document/xuexidetail.asp?id=1162
注册表使用视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=1163
信息技术及应用远程培训
http://www.xuexinet.com/document/xuexidetail.asp?id=1164
vpn服务的设置视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=1165
QQ空间制作视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=1188
录歌视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=1190
Windows应用程序界面美化(C#)
http://www.xuexinet.com/document/xuexidetail.asp?id=1191
ASP.NET学习视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=1202
吉林大学 操作系统
http://www.xuexinet.com/document/xuexidetail.asp?id=1213
四川电大 大学英语3(在线播放)
http://www.xuexinet.com/document/xuexidetail.asp?id=1239
金鹰 PowerPoint2003视频教程
http://www.xuexinet.com/document/xuexidetail.asp?id=1242
薄层色谱的制作与应用视频
http://www.xuexinet.com/document/xu