From fa9e3dbac4f826f78a7075700d48c967629ea5bd Mon Sep 17 00:00:00 2001 From: Revone Date: Sun, 24 Dec 2023 17:54:51 +0800 Subject: [PATCH] docs: Enhance the explanation of the theory that respects computer science. --- README.md | 3 +++ README_zh-CN.md | 2 ++ 2 files changed, 5 insertions(+) diff --git a/README.md b/README.md index a03f376..dcdffce 100644 --- a/README.md +++ b/README.md @@ -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. + + diff --git a/README_zh-CN.md b/README_zh-CN.md index 03e2232..fc49b9d 100644 --- a/README_zh-CN.md +++ b/README_zh-CN.md @@ -909,6 +909,8 @@ avl2.print(); ## 软件工程标准 +严格尊重计算机科学理论和软件开发规范,我们的LinkedList就是传统意义的LinkedList数据结构,而不是用Deque去代替以便标榜性能测试数据。当然我们也同时实现了基于动态数组的Deque。 +
Principle
原则