数据结构与算法 张铭 高等教育 十二五 高等学校计算机科学与技术系列 基本数据结构的概念原理和操作方法籍

Brand: 高等教育出版社    Sold By: EM China
数据结构与算法 张铭 高等教育 十二五 高等学校计算机科学与技术系列 基本数据结构的概念原理和操作方法籍
数据结构与算法 张铭 高等教育 十二五 高等学校计算机科学与技术系列 基本数据结构的概念原理和操作方法籍
数据结构与算法 张铭 高等教育 十二五 高等学校计算机科学与技术系列 基本数据结构的概念原理和操作方法籍
数据结构与算法 张铭 高等教育 十二五 高等学校计算机科学与技术系列 基本数据结构的概念原理和操作方法籍

数据结构与算法 张铭 高等教育 十二五 高等学校计算机科学与技术系列 基本数据结构的概念原理和操作方法籍

Brand: 高等教育出版社    Sold By: EM China
$33.96 In Stock
Item can be returned in its original condition for a full refund or replacement within 30 days of receipt.
Ships from China, Arrives in 7-14 business days
Delivery:
19
November2024
-
28
November2024
Delivery guarantee
$5 Credit If Delayed
Full Refund If Item Is Damaged
15-Day Full Refund If No Updates
30-Day Full Refund If Not Delivered

100% Satisfaction Guarantee

Amazing Value

Fast Shipping

Expert Customer Service

数据结构与算法 张铭 高等教育 十二五 高等学校计算机科学与技术系列 基本数据结构的概念原理和操作方法籍

数据结构与算法 张铭 高等教育 十二五 高等学校计算机科学与技术系列 基本数据结构的概念原理和...

$33.96

重要公告
本店不会以境外电话联系顾客有关书籍相关信息,如有接到境外电话或者拉您进qq群谈及理赔相关事宜请广大顾客不要相信,不要按照电话内容操作,谨防诈骗!快递丢件(可以联系当地派件员)
任何问题以联系店铺在线客服为准。

标题、详情出版时间等有误差

.

Product Details

重要公告
本店不会以境外电话联系顾客有关书籍相关信息,如有接到境外电话或者拉您进qq群谈及理赔相关事宜请广大顾客不要相信,不要按照电话内容操作,谨防诈骗!快递丢件(可以联系当地派件员)
任何问题以联系店铺在线客服为准。

标题、详情出版时间等有误差

.

具体出版信息以咨询在线客服为准

商品详情

D1

书名: 数据结构与算法

定价:34.00元

作者:张铭,等

: 高等教育

平装: 381页

ISBN: 9787040239614

1章 概论

1.1 问题求解

1.1.1 问题描述:股市的传言

1.1.2 问题分析和抽象

1.1.3 数据结构和算法设计

1.2 数据结构

1.2.1 数据的逻辑结构

1.2.2 数据的存储结构

1.2.3 抽象数据类型

1.3 算法

1.3.1 算法的概念

1.3.2 算法设计

1.4 算法分析

1.4.1 渐进分析方法

1.4.2 佳、差和平均情况

1.4.3 时间和空间的折衷

1.4.4 求解问题时数据结构的选择和评价

本章小结

习题

上机题

 

2章 线性表

2.1 线性表的概念

2.1.1 线性表的抽象数据类型

2.1.2 线性表的存储结构

2.1.3 线性表运算分类

2.2 顺序表

2.2.1 顺序表的类定义

2.2.2 顺序表的运算实现

2.3 链表

2.3.1 单链表

2.3.2 双链表

2.3.3 循环链表

2.4 线性表实现方法的比较

本章小结

习题

上机题

 

3章 栈与队列

3.1 栈

3.1.1 栈的抽象数据类型

3.1.2 顺序栈

3.1.3 链式栈

3.1.4 表达式求值

3.1.5 栈与递归

3.2 队列

3.2.1 队列的抽象数据类型

3.2.2 顺序队列

3.2.3 链式队列

3.3 栈与队列的深入讨论

3.3.1 顺序栈与链式栈的比较

3.3.2 顺序队列与链式队列的比较

3.3.3 限制存取点的表

本章小结

习题

上机题

 

4章 字符串

4.1 字符串的基本概念

4.1.1 字符编码

4.1.2 字符的编码顺序

4.1.3 字符串抽象数据类型

4.2 字符串的存储结构和实现

4.2.1 字符串的顺序存储

4.2.2 字符串类Class String的存储结构

4.2.3 字符串运算的实现

4.3 字符串的模式匹配

4.3.1 朴素的模式匹配算法

4.3.2 字符串的特征向量

4.3.3 KMP模式匹配算法

本章小结

习题

上机题

 

5章 二叉树

5.1 二叉树的概念

5.1.1 二叉树的定义和基本术语

5.1.2 满二叉树、完全二叉树、扩充二叉树

5.1.3 二叉树的主要性质

5.2 二叉树的周游

5.2.1 二叉树的抽象数据类型

5.2.2 深度优先周游二叉树

5.2.3 广度优先周游二叉树

5.3 二叉树的存储结构

5.3.1 二叉树的链式存储结构

5.3.2 完全二叉树的顺序存储结构

5.4 二叉搜索树

5.5 堆与优先队列

5.5.1 堆的定义及其实现

5.5.2 优先队列

5.6 Huffman树及其应用

5.6.1 Huffman树

5.6.2 Huffman编码

本章小结

习题

上机题

 

6章 树

6.1 树的定义和基本术语

6.1.1 树和森林

6.1.2 森林与二叉树的等价转换

6.1.3 树的抽象数据类型

6.1.4 树的周游

6.2 树的链式存储结构

6.2.1 “子结点表”表示方法

6.2.2 静态“左子/右兄”表示法

6.2.3 动态表示法

6.2.4 动态“左子/右兄”二叉链表表示法

6.2.5 父指针表示法和在并查集中的应用

6.3 树的顺序存储结构

6.3.1 带右链的先根次序表示

6.3.2 带双标记的先根次序表示

6.3.3 带度数的后根次序表示

6.3.4 带双标记的层次次序表示

6.4 K叉树

本章小结

习题

上机题

 

7章 图

7.1 图的定义和基本术语

7.2 图的抽象数据类型

7.3 图的存储结构

……

 

8章 内排序

9章 文件管理和外排序

10章 检索

11章 索引技术

12章 数据结构

参考文献

《数据结构与算法》:系统介绍各种基本数据结构的概念、原理和操作方法,并从算法的角度讨论排序和检索算法。

以问题求解为主线,从问题抽象、数据抽象和算法抽象的角度组织数据结构与算法的设计。

      注重将理论内容结合应用背景,加强上机动手实践能力训练,着重培养学生的抽象思维能力与问题建模能力,使其学会如何根据实际问题对数据结构和算法进行取舍,在时间复杂度和空间复杂度之间进行平衡。

      提供PPT电子教案、网络课程、立体化教学网站等教学资源,与《数据结构与算法》配套的实习课《数据结构与算法实验教程》将于2009年出版。

      依据高等学校计算机科学与技术教学指导委员会编制的高等学校计算机科学与技术专业规范和IEEE/ACM制订的CC2001-CC2005有关教程编写。

Shipping Overview: 

Shipping: Standard Domestic Shipping within the United States charges USD 4.99. Standard International Shipping from United Kingdom, Germany and Japan to the United States charges 14.99. 

Order Processing: Please allow 1-2 business days for order processing and preparation before shipment. 

Domestic Shipping: Orders within the U.S. are shipped via USPS or FedEx, depending on the origin of the product. The average transit time is 3-7 business days. 

International Shipping: Currently, we only ship within the USA. 

Tracking Information: Every order is trackable. You will receive a tracking number once your order has been shipped. Products may be shipped from various global fulfillment centers.

Shipping Delays: 

Please note that shipping times may vary due to factors beyond our control, such as weather conditions, natural disasters, or peak holiday periods. While we strive to ensure timely delivery, the exact arrival time cannot be guaranteed and is managed by the shipping carrier.

Shipping Options:

  • Standard Delivery: Most orders are shipped within 3-7 business days. Larger items may utilize LTL shipping for safe handling.

  • Handling Time: We handle shipments on business days (Monday - Friday), with a preparation time of 1-2 days.

  • Additional Charges: Some items require additional shipping charges due to their size, weight, or special handling. These charges are specified on the product pages and are not eligible for shipping discounts.

  • Exclusions: Gift cards, packaging, taxes, and prior purchases do not count toward the minimum purchase requirement for free shipping. This offer is valid only for shipments to U.S. addresses, including Puerto Rico.

Delivery Details:

  • Estimates: Standard shipping within the US typically takes 3-7 business days. These are estimates and not guarantees.

  • Shipping Restrictions: We ship to all 50 states, Washington, DC, U.S. territories, and APO/FPO/DPO addresses. Shipping options vary based on the delivery address.

  • Remote Areas: Shipments to remote areas may incur additional charges or require pickup from a nearby shipping partner’s location.

Shipping Confirmation:

You will receive a shipping confirmation email with a tracking number as soon as your order is dispatched. If you do not receive this email immediately, please be assured that your items will arrive within the estimated delivery window provided at checkout.

Order Modifications:

If you need to cancel or modify your order, please contact our customer support immediately.

Issues with Delivery:

If your order shows as delivered but you have not received it, please contact the shipping carrier directly to resolve the issue. For persistent problems, contact our customer service at cs@everymarket.com.

Customer Support:

Our team is available 24/7 to assist you with any questions or concerns regarding your order. We are committed to ensuring a smooth shopping experience.

Return & Refund Policy Overview

Please review our return and refund policies below to ensure a smooth transaction process.

Return Policy

  • Duration: You have 30 days from receiving your item to initiate a return.

  • Condition: Items must be unworn, unwashed, with original tags and packaging intact.

  • Shipping Costs: Customers are responsible for return shipping costs.

  • Packaging: Ensure returned items are well-packaged to avoid damage during transit.

  • Tracking: Use a trackable and insured shipping method as we are not liable for items lost or damaged on return.

  • Initiating a Return: Contact us at cs@everymarket.com to start your return. We will provide a return shipping label and instructions upon approval. Returns without prior approval will not be accepted.

How to Return

  • Method: Returns must be sent back by mail to the address provided in the return instructions.

Return Label

  • Defective Products: Return labels are provided for defective items.

  • Non-Defective Returns: Customers are responsible for obtaining their return shipping label.

Product Conditions for Return

  • Eligible Products: Returns are only accepted for items in new condition.

Nonreturnable Items

Certain items are not eligible for return:

  • Electronic devices after 30 days (e.g., computers, laptops, Kindles)

  • Gift cards, prepaid game cards

  • Perishable goods, live insects, some jewelry, some health and personal care items

  • Customized or personalized products

  • Items with special shipping restrictions

Refund Policy

  • Window: Eligible products may be returned within 30 days of delivery for a refund.

  • Refund Method: Refunds are processed to the original payment method or as store credit for items purchased with gift cards.

  • Processing Time: Refunds are processed within 3-5 business days after we receive the return; please allow additional time for shipping and bank processing.

Claims

Inspect your order upon arrival and report any defects, damages, or incorrect items immediately to allow us to address the issue. For claims, contact our support team with details of the issue.

Exchange Policy

For the quickest service, return your original item and place a new order for the desired product once your return is accepted.

Return Address

EveryMarket Customer Service 2101 E Terra Ln, O'Fallon, MO 63366

Customer Support

Available 24/7 for any questions or assistance needed:

  • Phone: +1 636-312-5925

  • Email: cs@everymarket.com

 

重要公告
本店不会以境外电话联系顾客有关书籍相关信息,如有接到境外电话或者拉您进qq群谈及理赔相关事宜请广大顾客不要相信,不要按照电话内容操作,谨防诈骗!快递丢件(可以联系当地派件员)
任何问题以联系店铺在线客服为准。

标题、详情出版时间等有误差

.

具体出版信息以咨询在线客服为准

商品详情

D1

书名: 数据结构与算法

定价:34.00元

作者:张铭,等

: 高等教育

平装: 381页

ISBN: 9787040239614

1章 概论

1.1 问题求解

1.1.1 问题描述:股市的传言

1.1.2 问题分析和抽象

1.1.3 数据结构和算法设计

1.2 数据结构

1.2.1 数据的逻辑结构

1.2.2 数据的存储结构

1.2.3 抽象数据类型

1.3 算法

1.3.1 算法的概念

1.3.2 算法设计

1.4 算法分析

1.4.1 渐进分析方法

1.4.2 佳、差和平均情况

1.4.3 时间和空间的折衷

1.4.4 求解问题时数据结构的选择和评价

本章小结

习题

上机题

 

2章 线性表

2.1 线性表的概念

2.1.1 线性表的抽象数据类型

2.1.2 线性表的存储结构

2.1.3 线性表运算分类

2.2 顺序表

2.2.1 顺序表的类定义

2.2.2 顺序表的运算实现

2.3 链表

2.3.1 单链表

2.3.2 双链表

2.3.3 循环链表

2.4 线性表实现方法的比较

本章小结

习题

上机题

 

3章 栈与队列

3.1 栈

3.1.1 栈的抽象数据类型

3.1.2 顺序栈

3.1.3 链式栈

3.1.4 表达式求值

3.1.5 栈与递归

3.2 队列

3.2.1 队列的抽象数据类型

3.2.2 顺序队列

3.2.3 链式队列

3.3 栈与队列的深入讨论

3.3.1 顺序栈与链式栈的比较

3.3.2 顺序队列与链式队列的比较

3.3.3 限制存取点的表

本章小结

习题

上机题

 

4章 字符串

4.1 字符串的基本概念

4.1.1 字符编码

4.1.2 字符的编码顺序

4.1.3 字符串抽象数据类型

4.2 字符串的存储结构和实现

4.2.1 字符串的顺序存储

4.2.2 字符串类Class String的存储结构

4.2.3 字符串运算的实现

4.3 字符串的模式匹配

4.3.1 朴素的模式匹配算法

4.3.2 字符串的特征向量

4.3.3 KMP模式匹配算法

本章小结

习题

上机题

 

5章 二叉树

5.1 二叉树的概念

5.1.1 二叉树的定义和基本术语

5.1.2 满二叉树、完全二叉树、扩充二叉树

5.1.3 二叉树的主要性质

5.2 二叉树的周游

5.2.1 二叉树的抽象数据类型

5.2.2 深度优先周游二叉树

5.2.3 广度优先周游二叉树

5.3 二叉树的存储结构

5.3.1 二叉树的链式存储结构

5.3.2 完全二叉树的顺序存储结构

5.4 二叉搜索树

5.5 堆与优先队列

5.5.1 堆的定义及其实现

5.5.2 优先队列

5.6 Huffman树及其应用

5.6.1 Huffman树

5.6.2 Huffman编码

本章小结

习题

上机题

 

6章 树

6.1 树的定义和基本术语

6.1.1 树和森林

6.1.2 森林与二叉树的等价转换

6.1.3 树的抽象数据类型

6.1.4 树的周游

6.2 树的链式存储结构

6.2.1 “子结点表”表示方法

6.2.2 静态“左子/右兄”表示法

6.2.3 动态表示法

6.2.4 动态“左子/右兄”二叉链表表示法

6.2.5 父指针表示法和在并查集中的应用

6.3 树的顺序存储结构

6.3.1 带右链的先根次序表示

6.3.2 带双标记的先根次序表示

6.3.3 带度数的后根次序表示

6.3.4 带双标记的层次次序表示

6.4 K叉树

本章小结

习题

上机题

 

7章 图

7.1 图的定义和基本术语

7.2 图的抽象数据类型

7.3 图的存储结构

……

 

8章 内排序

9章 文件管理和外排序

10章 检索

11章 索引技术

12章 数据结构

参考文献

《数据结构与算法》:系统介绍各种基本数据结构的概念、原理和操作方法,并从算法的角度讨论排序和检索算法。

以问题求解为主线,从问题抽象、数据抽象和算法抽象的角度组织数据结构与算法的设计。

      注重将理论内容结合应用背景,加强上机动手实践能力训练,着重培养学生的抽象思维能力与问题建模能力,使其学会如何根据实际问题对数据结构和算法进行取舍,在时间复杂度和空间复杂度之间进行平衡。

      提供PPT电子教案、网络课程、立体化教学网站等教学资源,与《数据结构与算法》配套的实习课《数据结构与算法实验教程》将于2009年出版。

      依据高等学校计算机科学与技术教学指导委员会编制的高等学校计算机科学与技术专业规范和IEEE/ACM制订的CC2001-CC2005有关教程编写。

Shipping Overview: 

Shipping: Standard Domestic Shipping within the United States charges USD 4.99. Standard International Shipping from United Kingdom, Germany and Japan to the United States charges 14.99. 

Order Processing: Please allow 1-2 business days for order processing and preparation before shipment. 

Domestic Shipping: Orders within the U.S. are shipped via USPS or FedEx, depending on the origin of the product. The average transit time is 3-7 business days. 

International Shipping: Currently, we only ship within the USA. 

Tracking Information: Every order is trackable. You will receive a tracking number once your order has been shipped. Products may be shipped from various global fulfillment centers.

Shipping Delays: 

Please note that shipping times may vary due to factors beyond our control, such as weather conditions, natural disasters, or peak holiday periods. While we strive to ensure timely delivery, the exact arrival time cannot be guaranteed and is managed by the shipping carrier.

Shipping Options:

  • Standard Delivery: Most orders are shipped within 3-7 business days. Larger items may utilize LTL shipping for safe handling.

  • Handling Time: We handle shipments on business days (Monday - Friday), with a preparation time of 1-2 days.

  • Additional Charges: Some items require additional shipping charges due to their size, weight, or special handling. These charges are specified on the product pages and are not eligible for shipping discounts.

  • Exclusions: Gift cards, packaging, taxes, and prior purchases do not count toward the minimum purchase requirement for free shipping. This offer is valid only for shipments to U.S. addresses, including Puerto Rico.

Delivery Details:

  • Estimates: Standard shipping within the US typically takes 3-7 business days. These are estimates and not guarantees.

  • Shipping Restrictions: We ship to all 50 states, Washington, DC, U.S. territories, and APO/FPO/DPO addresses. Shipping options vary based on the delivery address.

  • Remote Areas: Shipments to remote areas may incur additional charges or require pickup from a nearby shipping partner’s location.

Shipping Confirmation:

You will receive a shipping confirmation email with a tracking number as soon as your order is dispatched. If you do not receive this email immediately, please be assured that your items will arrive within the estimated delivery window provided at checkout.

Order Modifications:

If you need to cancel or modify your order, please contact our customer support immediately.

Issues with Delivery:

If your order shows as delivered but you have not received it, please contact the shipping carrier directly to resolve the issue. For persistent problems, contact our customer service at cs@everymarket.com.

Customer Support:

Our team is available 24/7 to assist you with any questions or concerns regarding your order. We are committed to ensuring a smooth shopping experience.

Return & Refund Policy Overview

Please review our return and refund policies below to ensure a smooth transaction process.

Return Policy

  • Duration: You have 30 days from receiving your item to initiate a return.

  • Condition: Items must be unworn, unwashed, with original tags and packaging intact.

  • Shipping Costs: Customers are responsible for return shipping costs.

  • Packaging: Ensure returned items are well-packaged to avoid damage during transit.

  • Tracking: Use a trackable and insured shipping method as we are not liable for items lost or damaged on return.

  • Initiating a Return: Contact us at cs@everymarket.com to start your return. We will provide a return shipping label and instructions upon approval. Returns without prior approval will not be accepted.

How to Return

  • Method: Returns must be sent back by mail to the address provided in the return instructions.

Return Label

  • Defective Products: Return labels are provided for defective items.

  • Non-Defective Returns: Customers are responsible for obtaining their return shipping label.

Product Conditions for Return

  • Eligible Products: Returns are only accepted for items in new condition.

Nonreturnable Items

Certain items are not eligible for return:

  • Electronic devices after 30 days (e.g., computers, laptops, Kindles)

  • Gift cards, prepaid game cards

  • Perishable goods, live insects, some jewelry, some health and personal care items

  • Customized or personalized products

  • Items with special shipping restrictions

Refund Policy

  • Window: Eligible products may be returned within 30 days of delivery for a refund.

  • Refund Method: Refunds are processed to the original payment method or as store credit for items purchased with gift cards.

  • Processing Time: Refunds are processed within 3-5 business days after we receive the return; please allow additional time for shipping and bank processing.

Claims

Inspect your order upon arrival and report any defects, damages, or incorrect items immediately to allow us to address the issue. For claims, contact our support team with details of the issue.

Exchange Policy

For the quickest service, return your original item and place a new order for the desired product once your return is accepted.

Return Address

EveryMarket Customer Service 2101 E Terra Ln, O'Fallon, MO 63366

Customer Support

Available 24/7 for any questions or assistance needed:

  • Phone: +1 636-312-5925

  • Email: cs@everymarket.com

 

Oops!

Sorry, it looks like some products are not available in selected quantity.

OK