Data Structure For Game Programers源码与pdf
2023-04-18 15:04:09 54.37MB Data Structu
1
Written by an author team of experts in their fields, thisauthoritative guide demystifies even the most difficultmathematical concepts so that you can gain a clear understanding ofdata structures and algorithms in C++. The unparalleled author team incorporates the object-orienteddesign paradigm using C++ as the implementation language, whilealso providing intuition and analysis of fundamentalalgorithms. Offers a unique multimedia format for learning the fundamentalsof data structures and algorithms Allows you to visualize key analytic concepts, learn about themost recent insights in the field, and do data structuredesign Provides clear approaches for developing programs Features a clear, easy-to-understand writing style that breaksdown even the most difficult mathematical concepts Building on the success of the first edition, this new versionoffers you an innovative approach to fundamental data structuresand algorithms.
2023-02-02 01:14:58 21.35MB C++ data structu algorithm
1
顺序表、链表、栈、队列、树、图的C实现。 (线性表顺序存储) #include "string.h" #include "ctype.h" #include "stdio.h" #include "stdlib.h" #include "io.h" #include "math.h" #include "time.h" #define OK 1 #define ERROR 0 #define TRUE 1 #define FALSE 0 #define MAXSIZE 20 /* 存储空间初始分配量*/ typedef int Status; /* Status 是函数的类型,其值 是函数结果状态代码,如OK 等*/ typedef int ElemType; /* ElemType 类型根据实际 情况而定,这里假设为int */ Status visit(ElemType c) { printf("%d ",c); return OK; } typedef struct { ElemType data[MAXSIZE]; /* 数组,存储数 据元素*/ int length; /* 线性表当前长度*/ }SqList;
2022-02-28 14:49:31 324KB data structu C-language
1
本书第3版推出了配套的《习题解析》,故在体例上也做了相应的调整, 主要包括以下方面:
2022-02-06 17:55:24 7.58MB 数据结构 data structu
1
在MOOC上学习电子科技大学(戴波老师主讲)数据结构与算法过程中整理的答案。
2021-12-29 20:57:15 192KB data structu algorithm
1
Data.Structures.and.Algorithms.in.Java.5th.Edition 英文原版
2021-11-18 15:00:48 39.84MB Java Data Structu Algorithms
1
It is not the main objective of this book to present you with the theorems and proofs on data structures and algorithms. I have followed a pattern of improving the problem solutions with different complexities (for each problem, you will find multiple solutions with different, and reduced, complexities). Basically, it’s an enumeration of possible solutions. With this approach, even if you get a new question, it will show you a way to think about the possible solutions. You will find this book useful for interview preparation, competitive exams preparation, and campus interview preparations.
2021-11-18 13:19:13 32.74MB Data Structu Algorithms
1
书名:Michael J. Folk, Bill Zoellick, Greg Riccardi-File Structures_ An Object-Oriented Approach with C++-Addison Wesley (1997) 全部都是英文的。讲解的是文件结构,包括如何组织类对象,如何持续化存储等等。
2021-10-15 16:48:09 39.11MB c++ file structu
1
背包问题不考虑包中物品的价值,考虑恰好装满背包。使用栈实现。
2021-06-20 10:22:10 2KB data structu
1
《数据结构与算法:Python描述》的英文版pdf+习题提示+示例源码
2021-04-04 11:43:18 6.05MB Python Algorithm Data Structu
1