算法导论 算法_算法导论

算法导论 算法

Algorithms are an integral part of the development world. Before starting coding of any software first an effective algorithm is designed to get desired outputs. In this article, we will understand what are algorithms, characteristics of algorithms, some examples of famous algorithms, Types of algorithms etc..

算法是开发领域不可或缺的一部分。 在开始对任何软件进行编码之前,必须先设计一种有效的算法以获得所需的输出。 在本文中,我们将了解什么是算法,算法的特征,著名算法的一些示例,算法的类型等。

Let's get started...

让我们开始吧...

什么是算法? (What is an Algorithm?)

It is a combination of a sequence of finite steps to solve a particular problem. or, It is a well-defined procedure which takes zero or more input and must produce at least one output to solve a particular problem.

它是解决特定问题的一系列有限步骤的组合。 或者,这是一个定义明确的过程,需要零个或多个输入,并且必须产生至少一个输出才能解决特定问题。

算法的特性/特征 (Properties/Characteristics of Algorithms)

  • Input: It may take zero or more input.

    输入:可能需要零个或多个输入。

  • Output: It must produce at least one output.

    输出:它必须产生至少一个输出。

  • Definiteness (Unambiguous): Every step in algorithm should be well defined, unique, precise.

    确定性(明确):算法中的每个步骤都应定义明确,唯一,精确。

  • Finiteness (Limited): Every algorithm should contain a finite number of steps and should produce a result infinite amount of time.

    有限(有限):每种算法都应包含有限数量的步骤,并且应产生无限长的时间。

  • Effectiveness: Operations used in algorithm must be simple and easy to understand.

    有效性:算法中使用的运算必须简单易懂。

  • Language independent.

    语言无关。

Note:

注意:

  • An algorithm is a step by step procedure to solve a particular problem whereas a program is an algorithm that is encoded in any programming language.

    算法是解决特定问题的逐步过程,而程序是以任何编程语言编码的算法。

  • Program is language dependent and algorithm is language independent.

    程序与语言有关,而算法与语言无关。

算法符号 (Notation of an Algorithm)

  1. Name of the algorithm: It should specify the problem to be solved.

    算法名称:应该指定要解决的问题。

  2. Step no.: It is an identification tag ( step numbering ) that specify the numbering of steps/statements. It is a positive integer.

    步骤编号:这是一个标识标签(步骤编号),用于指定步骤/语句的编号。 它是一个正整数。

  3. Explanatory comments: It is used to specify the meaning of instruction that is used in the algorithm. It is used to understand the logic of operations by the use of [ ] for comments in the algorithm.

    解释性注释:它用于指定算法中使用的指令的含义。 通过在算法中使用[]进行注释,可以理解操作的逻辑。

  4. Termination: Generally it is a STOP statement and the last statement of an algorithm that denoted ending of the algorithm.

    终止:通常,它是STOP语句,并且是算法的最后一条语句,表示该算法的结尾。

(Example)

Algorithm for addition of two numbers:

两个数相加的算法:

    ADD( A , B )
Step 1: Read A,B
Step 2: sum=A+B [ A & B are added and their value is stored in sum ]
Step 3: PRINT ‘Sum of A & B =’, sum
Step 4: STOP

This is an algorithm, the corresponding program will be different for different languages like for C language it is:

这是一种算法,不同的语言(例如C语言)的相应程序将有所不同:

#include<stdio.h>
int main()
{
int num1,num2,opt;
printf("Enter the first Integer:\n");
scanf("%d",&num1);
printf("Enter the second Integer:\n");
scanf("%d",&num2);
printf("Enter an correct option -> 1:addition 2: subtraction 3: multiplication 4: division -> \n");
scanf("%d",&opt);
switch(opt)
{
case 1:
printf("\nAddition of  %d and %d is: %d",num1,num2,num1+num2);
break;
case 2:
printf("\nSubstraction of %d  and %d is:  %d",num1,num2,num1-num2);
break;
case 3:
printf("\nMultiplication of %d  and %d is:  %d",num1,num2,num1*num2);
break;  
case 4: 
if(num2==0)
{
printf("OOps Devide by zero\n");
}
else
{
printf("\n Division of %d  and %d is:  %d",num1,num2,num1/num2);
}  
break;
default:
printf("\n Enter correct option\n");
}
return 0;
}

Output

输出量

Enter the first Integer: 10
Enter the second Integer: 20
Enter an correct option -> 1:addition 2: subtraction 3: multiplication 4: division ->  3Multiplication of 10  and 20 is:  200

算法类型 (Types of Algorithm)

  1. Divide and conquer algorithm

    分而治之算法

  2. Greedy algorithm

    贪心算法

  3. Dynamic programming

    动态编程

  4. Branch and bound algorithm

    分支定界算法

  5. Back Tracking

    回溯

  6. Simple Recursive algorithm

    简单递归算法

  7. Randomized algorithm

    随机算法

  8. Brute force algorithm

    蛮力算法

This was just the basic understanding of algorithm world. Read more articles/tutorials on Algorithms.

这只是对算法世界的基本了解。 阅读有关算法的更多文章/教程 。

翻译自: https://www.includehelp.com/algorithms/introduction-to-algorithms.aspx

算法导论 算法

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/540941.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

[Phonegap+Sencha Touch] 移动开发77 Cordova Hot Code Push插件实现自己主动更新App的Web内容...

原文地址&#xff1a;http://blog.csdn.net/lovelyelfpop/article/details/50848524 插件地址&#xff1a;https://github.com/nordnet/cordova-hot-code-push 以下是我对GitHub项目readme的翻译 ——————————————————————————————————————…

java 如何重写迭代器,如何用Java按需定制自己的迭代器

编写自己的迭代器的流程是&#xff1a;首先实现Iterable接口&#xff0c;进而实现该接口中的Iterator iterator()方法&#xff0c;该方法返回接口Iterator&#xff0c;Iterator接口中封装了next&#xff0c;hasnext&#xff0c;remove等方法。实现了Iterable接口的类能够通过fo…

count函数里加函数_PHP count()函数与示例

count函数里加函数PHP count()函数 (PHP count() function) "count() function" is used to get the total number of elements of an array. “ count()函数”用于获取数组元素的总数。 Syntax: 句法&#xff1a; count(array, [count_mode])Here, 这里&#xff0…

php整合支付宝,Thinkphp5.0整合支付宝在线下单

thinkphp5.0支付宝在线支付下单整个流程&#xff0c;包括创建订单、支付成功回调更新订单状态、最终跳转到商户订单详情页查看演示下载资源&#xff1a;17次 下载资源下载积分&#xff1a;998积分支付宝在线支付控制器代码 public function alipay() {//发起支付宝支付$order_n…

python函数示例_PHP closeir()函数与示例

python函数示例PHP Closedir()函数 (PHP closedir() function) The full form of closedir is "Close Directory", the function closedir() is used to close an opened directory. Closedir的完整格式为“ Close Directory” &#xff0c; 函数closedir()用于关闭打…

java宋江,Java编程内功-数据结构与算法「单链表」,

package com.structures.linkedlist;public class SingleLinkedListDemo {public static void main(String[] args) {HeroNode heroNode1 new HeroNode(1, "宋江", "及时雨");HeroNode heroNode2 new HeroNode(2, "卢俊义", "玉麒麟"…

智能家居逐渐融入AI技术 向大众市场扩张仍需时间

虽然智能家居变得越来越普遍&#xff0c;并且大众认知度越来越高&#xff0c;但是在这一技术变得像智能手机一样无处不在之前&#xff0c;OEM和服务提供商仍然有很长的路要走。 在2016年11月在硅谷举行的智能家居峰会上&#xff0c;代表们听到了来自整个价值链上的声音&#xf…

python 示例_Python使用示例设置add()方法

python 示例设置add()方法 (Set add() Method) add() method is used to add an element to the set, the method accepts an element and adds the elements to this set. add()方法用于将元素添加到集合中&#xff0c;该方法接受元素并将元素添加到该集合中。 Note: If the …

php怎么引用表单元素,表单元素:最全的各种html表单元素获取和使用方法总结...

表单是网页与用户的交互工具&#xff0c;由一个元素作为容器构成&#xff0c;封装其他任何数量的表单控件&#xff0c;还有其他任何元素里可用的标签&#xff0c;表单能够包含、、、、、等表单控件元素。表单元素有哪些呢&#xff1f;它包含了如下的这些元素&#xff0c;输入文…

数据中心部署气流遏制系统需要考虑的十大要素

数据中心气流遏制策略能够大幅提高传统数据中心制冷系统的可预测性和效率。事实上&#xff0c;绿色网格组织&#xff08;The Green Grid&#xff09;将气流管理策略称作“实施数据中心节能计划的起点”。但是&#xff0c;大多数已有数据中心由于受各种条件的制约&#xff0c;只…

JAVA语言异常,Java语言中的异常

1、异常分类从产生源头来看&#xff0c;Java语言中的异常可以分为两类&#xff1a;JVM抛出的异常。比如&#xff1a;访问null引用会引发NullPointerException&#xff1b;0作为除数&#xff0c;如9/0&#xff0c;JVM会抛出ArithmeticException&#xff1b;内存消耗完&#xff0…

使用Mybatis Generator结合Ant脚本快速自动生成Model、Mapper等文件的方法

新建generatorConfig.xml和build_mybatis.xml&#xff1a; jar下载 <dependency><groupId>org.mybatis.generator</groupId><artifactId>mybatis-generator-core</artifactId><version>1.3.2</version></dependency> <depe…

java bitset_Java BitSet or()方法与示例

java bitsetBitSet类或()方法 (BitSet Class or() method) or() method is available in java.util package. or()方法在java.util包中可用。 or() method is used to perform logical OR between this BitSet and the given BitSet(bs). This BitSet is updated when either t…

matlab 细化函数,MATLAB图像处理工具箱函数(细化篇).doc

MATLAB图像处理工具箱函数(细化篇)第3章 MATLAB数字图像处理工具箱3.1 MATLAB图像预处理3.1.1 图像处理的基本操作1. 读入并显示一幅图像clear %清除所有的工作平台变量close all %关闭已打开的图形窗口Iimread (pout.tif); %读取图像pout.tif(该图像是图像处理工具箱自带的图像…

STM32启动解析

启动方式对的不同下载模式 STM32可以通过BOOT引脚的配置&#xff0c;来选择不同的启动模式------对应不同的下载方式。 仿真器下载—— 内部FLASH的启动方式 串口下载 —— 系统存储器的启动方式 内部SRAM一般不用&#xff0c;不讲 启动过程 以内部FLASH的启动方式为例&am…

OpenBSD基金会收到锤子科技约140万捐赠款

11月26日消息&#xff0c;给开源项目捐款一向是锤子科技发布会的传统&#xff0c;去年发布会的门票收入捐给了国人章亦春主导的开源项目OpenResty。今年&#xff0c;锤子科技选择将收益捐赠给OpenBSD基金会。OpenBSD基金会收到锤子科技约140万捐赠款 OpenBSD基金会11月23日发布…

自动化部署kvm虚拟机_自动化虚拟助手

自动化部署kvm虚拟机The automated virtual assistant or commonly called personal assistants, are developed to serve its users by performing some tasks, setting reminders and much more based on the input is given and local awareness. It is integrated with a l…

php 数据库编码,php怎么设置数据库编码方式

在php中&#xff0c;可以使用mysql_query()函数来设置mysql数据库的编码方式&#xff1b;具体方法&#xff1a;在mysql_connect()语句之后添加“mysql_query("set names 编码方式");”代码即可。本教程操作环境&#xff1a;windows7系统、PHP7.1版&#xff0c;DELL G…

mysql截取字符串与reverse函数

mysql的函数大全&#xff1a; http://www.jb51.net/Special/606.htm 这个网页上很多知识点&#xff0c;可以学习下&#xff0c;关于mysql的函数&#xff0c;也可以作为API查询&#xff1a; 这里只说下mysql的截取函数和reverse函数&#xff1a; MySQL 字符串截取函数&#xff1…

flask sql外键使用_如何在SQL中使用外键?

flask sql外键使用Basically, Foreign Key represents relationship between tables. 基本上&#xff0c; 外键代表表之间的关系 。 Syntax: 句法&#xff1a; column-name data_type (size) CONSTRAINT constraint-name References Table-name (Column-name)Example: 例&a…