# data_structure **Repository Path**: chen8864/data_structure ## Basic Information - **Project Name**: data_structure - **Description**: 数据结构学习 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-02-18 - **Last Updated**: 2021-03-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 链表 ## single 单向链表 - arrayList 动态数组 - SingleList 单向链表 ## circle 循环链表 - singleCircleLinkedList 单向循环链表 # 总结 ## ArrayList VS LinkedList - ArrayList 动态数组 > 查询快, 添加、删除慢 1. 初始化连续的内存空间, 存放数据 2. 扩容、缩容慢 - LinkedList 链表 > 添加、删除快, 查询慢 1. 数据链式存储、节点动态添加 # 附件 ## 附件一 ### Git提交样式 > 参考说明 https://udacity.github.io/git-styleguide/ > 类型位于在标题内,有以下几种可能: - feature: 新功能 - fix:错误修复 - docs:文档修改 - style:格式、分号缺失等,代码无变动 - refactor:生产代码重构