软件测试Notes
1. Data Structures related
- AVL Tree
- Inorder, preorder, postorder, levelorder traversal
- Binary Heap (Min, Max), priority queue.
* Heapsort: always find the last leaf node and switch with root node. Then adjust the tree to be a min/max heap, then continue find the second last node in the array we store the values, repeat switch.
概念
- 瀑布模型Waterfull model,
- 周期:需求—分析/计划—设计—开发—测试—运行维护