数据结构

当前位置:首页 > 计算机网络 > 程序设计 > 数据结构

出版社:清华大学出版社
出版日期:2002-1
ISBN:9787302051190
作者:黄国瑜,叶乃菁
页数:403页

书籍目录

第1章 数据结构的基本概念
第2章 数组
第3章 链表
第4章 堆栈
第5章 队列
第6章 递归
第7章 基础树状结构
第8章 排序
第9章 查找
第10章 复杂链表
第11章 图形结构
附录A ASCII码
附录B 习题解答
附录C Java中常用的类

作者简介

《数据结构(Java语言版)》采用系列式的叙述方式,引导读者循序渐进地掌握数组结构、链表结构、堆栈结构、队列结构、树状结构、图形结构等不同的数据结构,以及递归设计、排序设计和查找设计等程序设计方法。全书文字浅显易懂,程序示例简洁明了,是程序设计人员的上乘参考书。
数据结构包含以下两方面的内容:一是用合适的算法来规划程序流程,二是采用简洁的数据结构来表示程序中的数据和变量。而Java语言是当今最热门的一种跨平台的面向对象的程序设计语言,所以《数据结构(Java语言版)》以Java语言作为数据结构的程序设计语言。

图书封面


 数据结构下载 更多精彩书评



发布书评

 
 


精彩书评 (总计1条)

  •     package ConsoleReader;import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; import java.io.IOException; /** A class to read strings and numbers from an input stream. This class is suitable for beginning Java programmers. It constructs the necessary buffered reader, handles I/O exceptions, and converts strings to numbers. */ public class ConsoleReader { /** Constructs a console reader from an input stream such as System.in @param inStream an input stream */ public ConsoleReader(InputStream inStream) { reader = new BufferedReader (new InputStreamReader(inStream)); } /** Reads a line of input and converts it into an integer. The input line must contain nothing but an integer. Not even added white space is allowed. @return the integer that the user typed */ public int readInt() { String inputString = readLine(); int n = Integer.parseInt(inputString); return n; } /** Reads a line of input and converts it into a floating- point number. The input line must contain nothing but a nunber. Not even added white space is allowed. @return the number that the user typed */ public double readDouble() { String inputString = readLine(); double x = Double.parseDouble(inputString); return x; } /** Reads a line of input. In the (unlikely) event of an IOException, the program terminates. @return the line of input that the user typed, null at the end of input */ public String readLine() { String inputLine = ""; try { inputLine = reader.readLine(); } catch(IOException e) { System.out.println(e); System.exit(1); } return inputLine; } private BufferedReader reader; }
 

外国儿童文学,篆刻,百科,生物科学,科普,初中通用,育儿亲子,美容护肤PDF图书下载,。 零度图书网 

零度图书网 @ 2024