Python 算法设计详细操作教程
搜索 -在数据结构中搜索项目的算法。
排序 - 按特定顺序对项目进行排序的算法。
插入 -将项目插入数据结构的算法。
更新 -更新数据结构中现有项目的算法。
删除 -从数据结构中删除现有项目的算法。
明确 -算法应清晰明确。它的每个步骤(或阶段)及其输入/输出都应该明确,并且只能导致一种含义。
输入 -算法应具有0个或更多定义明确的输入。
输出 -算法应具有1个或多个定义明确的输出,并且应匹配所需的输出。
有限 -算法必须在有限数量的步骤后终止。
可行性 -可用资源应该可行。
独立 -算法应具有逐步指导,该逐步指导应独立于任何编程代码。
# Filename : example.py
# Copyright : 2020 By Lidihuo
# Author by : www.lidihuo.com
# Date : 2020-08-15
step 1 − START
step 2 − declare three integers a, b & c
step 3 − define values of a & b
step 4 − add values of a & b
step 5 − store output of step 4 to c
step 6 − print c
step 7 − STOP
# Filename : example.py
# Copyright : 2020 By Lidihuo
# Author by : www.lidihuo.com
# Date : 2020-08-15
step 1 − START ADD
step 2 − get values of a & b
step 3 − c ← a + b
step 4 − display c
step 5 − STOP