• The Art Of Computer Programming: 1.1


    The Art Of Computer Programming: 1.1

    Table of Contents

    1 Algorithm

    1.1 算法的特性

    算法除了是一套有限的规则 (Being a finite set of rules) 之外,还有如下的五个特性:

    • 有限性 (Finiteness) :需要在有限的步骤内收敛结束。
    • 可定义性 (Definieness) :算法中的每一步骤必要要有精确的定义。
    • 输入 (input) :有 0 或者多数输入
    • 输出 (output) :有 1 或者多个输出
    • 有效性 (Effectiveness) :算法通常是有效的。

    1.2 例子

    ea.png

    Figure 1: Euclid's alrogithm

    Lisp code:

    (defun ea (m n)
      "Euclid's algorithm"
      (interactive)
      (let ((r (% m n)))
        (if (= r 0)
            n
          (ea n r))))
    
  • 相关阅读:
    有些事情,我们需要坚持到底
    SEO策略与细节:细节决定成败
    织梦DEDECMS更新6月7日补丁后出现版权链接的删除办法
    argparse模块的应用
    多态实现原理剖析
    tensorflow中tf.ConfigProto()用法解释
    tensor flow中summary用法总结
    tensorflow-gpu版本出现libcublas.so.8.0:cannot open shared object file
    python3自带工具2to3.py用法
    公司管理系统之设计
  • 原文地址:https://www.cnblogs.com/yangyingchao/p/3941653.html
Copyright © 2020-2023  润新知