# DataStructureLearning **Repository Path**: l690931789/DataStructureLearning ## Basic Information - **Project Name**: DataStructureLearning - **Description**: No description available - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-12-07 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # C-LinkList This is my first notebook in learning data structure and github. DLB.cpp is a demo shows how a linklist was created in C/C++, and linklist is the very foudation in learning data structure. Stack.cpp is a demo shows how to create a Stack structure using C/C++, and it's also a kind of linklist. And there is a fibonacci generator in the demo. Queue.cpp is a demo shows how to create a queue using C/C++, and it's aldo a kind of LinkList. tree.cpp is a demo shows how to create a tree using C/C++.And contains three traversals of binary tree. qipao.cpp、xuanze.cpp、xuanze-op.cpp、insert_order.cpp、shell_order.cpp、QuickSort.cpp,mergesort.cpp are different order algorithms, and xuanze-op.cpp is an optimized algorithm for xuanze.cpp graph.cpp is a demo shows how to create a graph using C/C++.