自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(0)
  • 资源 (13)
  • 收藏
  • 关注

空空如也

c3550-ipservicesk9-mz.122-55.SE9.bin

c3550-ipservicesk9-mz.122-55.SE9.bin

2016-09-18

Dell Force10 S60 FTOS-SC-8.3.3.9.bin

Dell Force10 S60最新固件

2014-08-08

Java语言的科学与艺术(国外计算机科学经典教材)

编辑推荐 本书采用现代面向对象方法,从零开始介绍最有用的类层次结构,全文使用图形和交互式程序,充分激发学生的学习兴趣。本书使用传记简介、引用以及哲学片段来突出计算的历史和理性背景,着重强调算法和问题解决,而今天的初级教科书通常忽略了这一点。 内容简介 自1995年首次发布以来,Java编程语言作为一种教学语言变得日益重要,现在已经成为初级计算课程斯坦福大学的标准语言。Java语言可以让学生编写高度交互式程序,这充分激发了他们的学习兴趣。但Java语言很复杂,老师和学生们在理解Java语言的结构时,复杂性成为了最大的障碍。   在本书中,斯坦福大学教授、著名的计算机科学教育领导者Eric S.Roberts着重强调了更适合于初学者的友好讲解方式,使用ACM Java库简化编程。本书简练清晰地介绍了传统CS1课程的内容,同时也包含了最近的Computing Curriculum 2001报告计算机科学卷中指定为CS101O或CS111O课程的全部主题。 作者简介 Eric S. Roberts,美国斯坦福大学计算机科学系教授,并担任主管教学事务的系主任。同时还由于教学改革所取得的成就被评为Charles Simonyi荣誉教授。他于1980年获得哈佛大学应用数学博士学位,并曾在加州Palo Alto的DEC公司的系统研究中心工作了5年。作为一位成功的教育工作者,Roberts还获得了1993年的Bing Award奖。 目录 第1章 前言  1.1 计算简史  1.2 计算机科学的含义  1.3 计算机硬件简介  1.4 算法  1.5 编程过程的几个阶段  1.6 Java和面向对象范例  1.7 Java和WWW  1.8 小结  1.9 复习题 第2章 编程示例  2.1 “Hello world”程序  2.2 编程过程的观点  2.3 两数相加的程序  2.4 编程习语和模式  2.5 类和对象  2.6 图形程序  2.7 小结  2.8 复习题  2.9 编程练习 第3章 表达式  3.1 原始数据类型  3.2 常量与变量  3.3 运算符和操作数  3.4 赋值语句  3.5 布尔表达式  3.6 设计改变  3.7 小结  3.8 复习题  3.9 编程练习 第4章 语句形式  4.1 Java的语句类型  4.2 控制语句和问题解决  4.3 if 语句  4.4 switch语句  4.5 while语句  4.6 for语句  4.7 小结  4.8 复习题  4.9 编程练习 第5章 方法  5.1 方法概述  5.2 编写自己的方法  5.3 方法调用过程的技巧  5.4 分解  5.5 算法方法  5.6 小结  5.7 复习题  5.8 编程练习 第6章 对象和类  6.1 使用RandomGenerator类  6.2 javadoc文档系统  6.3 定义自己的类  6.4 表示学生信息  6.5 有理数  6.6 扩展现有类  6.7 小结  6.8 复习题  6.9 编程练习 第7章 对象和内存  7.1 内存结构  7.2 将内存分配给变量  7.3 原始类型与对象  7.4 链接对象  7.5 小结  7.6 复习题  7.7 编程练习 第8章 字符串和字符  8.1 枚举的原则  8.2 字符  8.3 作为抽象概念的字符串  8.4 使用String类中的方法  8.5 字符串处理案例研究  8.6 小结  8.7 复习题  8.8 编程练习 第9章 面向对象图形  9.1 acm.graphics模型  9.2 acm.graphics程序包的结构  9.3 使用形状类  9.4 创建复合对象  9.5 小结  9.6 复习题  9.7 编程练习 第10章 事件驱动程序  10.1 Java事件模型  10.2 简单的事件驱动程序  10.3 响应鼠标事件  10.4 响应键盘事件  10.5 创建简单的GUI  10.6 Swing 交互器层次结构  10.7 管理组件布局  10.8 使用TableLayout类  10.9 小结  10.10 复习题  10.11 编程练习 第11章 数组与ArrayList类  11.1 数组简介  11.2 数组的内部表示法  11.3 数组作为参数传递  11.4 使用数组制作表格  11.5 数组初始化  11.6 多维数组  11.7 图像处理  11.8 ArrayList类  11.9 小结  11.10 复习题  11.11 编程练习 第12章 搜索与排序  12.1 搜索  12.2 排序  12.3 评估算法效率  12.4 使用数据文件  12.5 小结  12.6 复习题  12.7 编程练习 第13章 数组与ArrayList类  13.1 ArrayList类回顾  13.2 HashMap类  13.3 Java集合架构  13.4 面向对象设计的原则  13.5 小结  13.6 复习题  13.7 编程练习 第14章 展望  14.1 递归  14.2 并发  14.3 使用网络  14.4 编程模式  14.5 小结  14.6 复习题  14.7 编程练习

2010-12-27

CDMA网规网优技能认证试题库

目 录 1 试题库分类 1 2 通讯和CDMA基本原理 2 2.1 选择题 2 2.2 判断题 9 2.3 填空题 12 2.4 简答题 16 3 网络规划流程规范 19 3.1 选择题 19 3.2 判断题 22 3.3 填空题 22 3.4 简答题 22 4 网络规划专业知识 24 4.1 选择题 24 4.2 判断题 33 4.3 填空题 35 4.4 简答题 37 5 网络规划实践知识 39 5.1 选择题 39 5.2 判断题 39 5.3 填空题 39 5.4 简答题 39 6 网络优化流程规范 40 6.1 选择题 40 6.2 判断题 49 6.3 填空题 49 6.4 简答题 49 7 网络优化专业知识 52 7.1 选择题 52 7.2 判断题 61 7.3 填空题 64 7.4 简答题 68 8 网络优化实践知识 72 8.1 选择题 72 8.2 判断题 72 8.3 填空题 72 8.4 简答题 72

2010-06-05

Building Embedded Linux Systems【pdf】

There's a great deal of excitement surrounding the use of Linux in embedded systems -- for everything from cell phones to car ABS systems and water-filtration plants -- but not a lot of practical information. Building Embedded Linux Systems offers an in-depth, hard-core guide to putting together embedded systems based on Linux. Updated for the latest version of the Linux kernel, this new edition gives you the basics of building embedded Linux systems, along with the configuration, setup, and use of more than 40 different open source and free software packages in common use. The book also looks at the strengths and weaknesses of using Linux in an embedded system, plus a discussion of licensing issues, and an introduction to real-time, with a discussion of real-time options for Linux. This indispensable book features arcane and previously undocumented procedures for: Building your own GNU development toolchain Using an efficient embedded development framework Selecting, configuring, building, and installing a target-specific kernel Creating a complete target root filesystem Setting up, manipulating, and using solid-state storage devices Installing and configuring a bootloader for the target Cross-compiling a slew of utilities and packages Debugging your embedded system using a plethora of tools and techniques Using the uClibc, BusyBox, U-Boot, OpenSSH, thttpd, tftp, strace, and gdb packages

2009-05-02

Android-A Programmers Guide【pdf】

Build compelling Java-based mobile applications using the Android SDK and the Eclipse open-source software development platform. Android: A Programmer's Guide shows you, step-by-step, how to download and set up all of the necessary tools, build and tune dynamic Android programs, and debug your results. Discover how to provide web and chat functions, interact with the phone dialer and GPS devices, and access the latest Google services. You'll also learn how to create custom Content Providers and database-enable your applications using SQLite. Install and configure Java, Eclipse, and Android plugin Create Android projects from the Eclipse UI or command line Integrate web content, images, galleries, and sounds Deploy menus, progress bars, and auto-complete functions Trigger actions using Android Intents, Filters, and Receivers Implement GPS, Google Maps, Google Earth, and GTalk Build interactive SQLite databases, calendars, and notepads Test applications using the Android Emulator and Debug Bridge

2009-05-02

3G EVOLUTION: HSPA AND LTE FOR MOBILE BROADBAND.part2

This book describes the evolution of3Gdigital cellular into an advanced broadband mobile access. The focus of this book is on the evolution of the 3G mobile communication as developed in the 3GPP standardization (Third Generation Partnership Project), looking at the radio access and access network evolution.

2008-11-05

3G EVOLUTION: HSPA AND LTE FOR MOBILE BROADBAND.part1

This book describes the evolution of3Gdigital cellular into an advanced broadband mobile access. The focus of this book is on the evolution of the 3G mobile communication as developed in the 3GPP standardization (Third Generation Partnership Project), looking at the radio access and access network evolution.

2008-11-05

3G EVOLUTION: HSPA AND LTE FOR MOBILE BROADBAND

This book describes the evolution of3Gdigital cellular into an advanced broadband mobile access. The focus of this book is on the evolution of the 3G mobile communication as developed in the 3GPP standardization (Third Generation Partnership Project), looking at the radio access and access network evolution.

2008-11-05

Wireless Communications Principles and Practice 2nd Edition part4

Wireless Communications Principles and Practice 2nd Edition, T Rappaport, Prentice Hall。无线通信原理教材

2008-09-03

Wireless Communications Principles and Practice 2nd Edition part3

Wireless Communications Principles and Practice 2nd Edition, T Rappaport, Prentice Hall。无线通信原理教材

2008-09-03

Wireless Communications Principles and Practice 2nd Edition part2

Wireless Communications Principles and Practice 2nd Edition, T Rappaport, Prentice Hall。无线通信原理教材

2008-09-03

Wireless Communications Principles and Practice 2nd Edition part1

Wireless Communications Principles and Practice 2nd Edition, T Rappaport, Prentice Hall。无线通信原理教材

2008-09-03

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除