mirror of
https://github.com/zrwusa/data-structure-typed.git
synced 2024-11-23 12:54:04 +00:00
docs: Enhance the explanation of the theory that respects computer science.
This commit is contained in:
parent
c949b5b741
commit
fa9e3dbac4
|
@ -931,6 +931,9 @@ avl2.print();
|
|||
|
||||
## Software Engineering Design Standards
|
||||
|
||||
We strictly adhere to computer science theory and software development standards. Our LinkedList is designed in the traditional sense of the LinkedList data structure, and we refrain from substituting it with a Deque solely for the purpose of showcasing performance test data. However, we have also implemented a Deque based on a dynamic array concurrently.
|
||||
|
||||
|
||||
<table style="display: table; width:100%; table-layout: fixed;">
|
||||
<tr>
|
||||
<th>Principle</th>
|
||||
|
|
|
@ -909,6 +909,8 @@ avl2.print();
|
|||
|
||||
## 软件工程标准
|
||||
|
||||
严格尊重计算机科学理论和软件开发规范,我们的LinkedList就是传统意义的LinkedList数据结构,而不是用Deque去代替以便标榜性能测试数据。当然我们也同时实现了基于动态数组的Deque。
|
||||
|
||||
<table style="display: table; width:100%; table-layout: fixed;">
|
||||
<tr>
|
||||
<th>原则</th>
|
||||
|
|
Loading…
Reference in a new issue