注意,我不是在翻译,本人英语渣渣,只是大意说说中心思想,有错误请纠正,谢谢。
Introduction 简介
What is a computer program? When you get down to the lowest level, you can sepa-
rate a program into two main sections: the data and the instructions that operate
on the data. These two sections of a program are commonly called the data struc-
tures and the algorithms.
程序主要分两部分,数据和对数据的操作。也即数据结构和算法。
Understanding data structures and algorithms is an essential part of game pro-
gramming. Knowing the most efficient way to store data and work with the data is
an important part of game programming;
说明了数据结构和算法的重要性,要追求高效的数据储存和处理的方法。
I have a few goals with this book:
■ Teach you how the most popular data structures and algorithms work
■ Teach you how to make the structures and algorithms
■ Teach you how to use the data structures in computer games
读完这本书,我们会掌握到
最流行的数据结构和算法的原理
如何构造数据结构和算法
如何在电脑游戏中使用数据结构
Introduction 简介
What is a computer program? When you get down to the lowest level, you can sepa-
rate a program into two main sections: the data and the instructions that operate
on the data. These two sections of a program are commonly called the data struc-
tures and the algorithms.
程序主要分两部分,数据和对数据的操作。也即数据结构和算法。
Understanding data structures and algorithms is an essential part of game pro-
gramming. Knowing the most efficient way to store data and work with the data is
an important part of game programming;
说明了数据结构和算法的重要性,要追求高效的数据储存和处理的方法。
I have a few goals with this book:
■ Teach you how the most popular data structures and algorithms work
■ Teach you how to make the structures and algorithms
■ Teach you how to use the data structures in computer games
读完这本书,我们会掌握到
最流行的数据结构和算法的原理
如何构造数据结构和算法
如何在电脑游戏中使用数据结构