蛮力写算法_蛮力算法解释

蛮力写算法

Brute Force Algorithms are exactly what they sound like – straightforward methods of solving a problem that rely on sheer computing power and trying every possibility rather than advanced techniques to improve efficiency.

蛮力算法听起来确实像是–解决问题的直接方法,该方法依赖于纯粹的计算能力,并尝试各种可能性而不是先进的技术来提高效率。

For example, imagine you have a small padlock with 4 digits, each from 0-9. You forgot your combination, but you don't want to buy another padlock. Since you can't remember any of the digits, you have to use a brute force method to open the lock.

例如,假设您有一个带有4位数字的小挂锁,每个数字从0-9。 您忘记了密码,但是您不想再购买一个挂锁。 由于您不记得任何数字,因此必须使用蛮力方法来打开锁。

So you set all the numbers back to 0 and try them one by one: 0001, 0002, 0003, and so on until it opens. In the worst case scenario, it would take 104, or 10,000 tries to find your combination.

因此,您将所有数字都设置回0,然后一一尝试:0001、0002、0003,依此类推,直到打开为止。 在最坏的情况下,将需要10 4或10,000次尝试来找到您的组合。

A classic example in computer science is the traveling salesman problem (TSP). Suppose a salesman needs to visit 10 cities across the country. How does one determine the order in which those cities should be visited such that the total distance traveled is minimized?

计算机科学中的经典示例是旅行商问题(TSP)。 假设业务员需要访问全国10个城市。 如何确定应该访问这些城市的顺序,以使旅行的总距离最小化?

The brute force solution is simply to calculate the total distance for every possible route and then select the shortest one. This is not particularly efficient because it is possible to eliminate many possible routes through clever algorithms.

蛮力解决方案仅是计算每种可能路线的总距离,然后选择最短的路线。 这不是特别有效,因为可以通过巧妙的算法消除许多可能的路线。

The time complexity of brute force is O(mn), which is sometimes written as O(n*m) . So, if we were to search for a string of "n" characters in a string of "m" characters using brute force, it would take us n * m tries.

蛮力的时间复杂度为O(m n ) ,有时写为O(n * m) 。 因此,如果要使用蛮力在“ m”个字符字符串中搜索一个“ n”个字符字符串,则需要进行n * m次尝试。

有关算法的更多信息 (More information about algorithms)

In computer science, an algorithm is simply a set of step by step procedure to solve a given problem. Algorithms can be designed to perform calculations, process data, or perform automated reasoning tasks.

在计算机科学中,算法只是解决特定问题的一组逐步步骤。 可以将算法设计为执行计算,处理数据或执行自动推理任务。

Here's how Wikipedia defines them:

维基百科如何定义它们:

An algorithm is an effective method that can be expressed within a finite amount of space and time and in a well-defined formal language for calculating a function. Starting from an initial state and initial input (perhaps empty), the instructions describe a computation that, when executed, proceeds through a finite number of well-defined successive states, eventually producing “output” and terminating at a final ending state. The transition from one state to the next is not necessarily deterministic; some algorithms, known as randomized algorithms, incorporate random input.
算法是一种有效的方法,可以在有限的空间和时间范围内并以定义明确的形式语言表示,以计算函数。 从初始状态和初始输入(可能为空)开始,指令描述了一种计算,该计算在执行时会经过有限数量的定义明确的连续状态,最终产生“输出”并终止于最终的结束状态。 从一种状态过渡到另一种状态不一定是确定性的; 一些算法(称为随机算法)包含随机输入。

There are certain requirements that an algorithm must abide by:

算法必须满足某些要求:

  1. Definiteness: Each step in the process is precisely stated.

    确定性:过程中的每个步骤均已明确说明。
  2. Effective Computability: Each step in the process can be carried out by a computer.

    有效的可计算性:该过程的每个步骤都可以由计算机执行。
  3. Finiteness: The program will eventually successfully terminate.

    有限:程序最终将成功终止。

Some common types of algorithms include:

一些常见的算法类型包括:

  • sorting algorithms

    排序算法
  • search algorithms

    搜索算法
  • compression algorithms.

    压缩算法。

Classes of algorithms include

算法类别包括

  • Graph

    图形
  • Dynamic Programming

    动态编程
  • Sorting

    排序
  • Searching

    正在搜寻
  • Strings

    弦乐
  • Math

    数学
  • Computational Geometry

    计算几何
  • Optimization

    优化
  • Miscellaneous.

    杂。

Although technically not a class of algorithms, Data Structures are often grouped with them.

尽管从技术上讲不是一类算法,但是数据结构经常与它们组合在一起。

效率 (Efficiency)

Algorithms are most commonly judged by their efficiency and the amount of computing resources they require to complete their task.

最常根据算法的效率和完成任务所需的计算资源量来判断算法。

A common way to evaluate an algorithm is to look at its time complexity. This shows how the running time of the algorithm grows as the input size grows. Since the algorithms today have to operate on large data inputs, it is essential for our algorithms to have a reasonably fast running time.

评估算法的常见方法是查看其时间复杂度。 这显示了算法的运行时间如何随着输入大小的增长而增长。 由于当今的算法必须在大数据输入上运行,因此对于我们的算法而言,具有相当快的运行时间至关重要。

排序算法 (Sorting Algorithms)

Sorting algorithms come in various flavors depending on your necessity. Some, very common and widely used are:

排序算法根据您的需要而有不同的风格。 一些非常普遍和广泛使用的是:

快速排序 (Quicksort)

There is no sorting discussion which can finish without quick sort. Here is the basic concept: Quick Sort

没有排序讨论,没有快速排序就可以结束。 这是基本概念: 快速排序

合并排序 (Mergesort)

A sorting algorithm which relies on the concept how to sorted arrays are merged to give one sorted arrays. Read more about it here: Mergesort

排序算法依赖于如何将排序数组合并为一个排序数组的概念。 在此处了解更多信息: Mergesort

freeCodeCamp’s curriculum heavily emphasizes creating algorithms. This is because learning algorithms is a good way to practice programming skills. Interviewers most commonly test candidates on algorithms during developer job interviews.

freeCodeCamp的课程非常强调创建算法。 这是因为学习算法是练习编程技能的好方法。 面试官最常在开发人员工作面试中测试算法候选人。

有关JavaScript算法的书籍: (Books about algorithms in JavaScript:)

Data Structures in JavaScript

JavaScript中的数据结构

  • Free book which covers Data Structures in JavaScript

    涵盖JavaScript中数据结构的免费书籍
  • GitBook

    GitBook

Learning JavaScript Data Structures and Algorithms - Second Edition

学习JavaScript数据结构和算法-第二版

  • Covers object oriented programming, prototypal inheritance, sorting & searching algorithms, quicksort, mergesort, binary search trees and advanced algorithm concepts

    涵盖面向对象的编程,原型继承,排序和搜索算法,快速排序,合并排序,二进制搜索树和高级算法概念
  • Amazon

    亚马孙

  • ISBN-13: 978-1785285493

    ISBN-13:978-1785285493

Data Structures and Algorithms with JavaScript: Bringing classic computing approaches to the Web

JavaScript的数据结构和算法:将经典的计算方法引入Web

  • Covers recursion, sorting and searching algorithms, linked lists and binary search trees.

    涵盖递归,排序和搜索算法,链表和二进制搜索树。
  • Amazon

    亚马孙

  • ISBN-13: 978-1449364939

    ISBN-13:978-1449364939

翻译自: https://www.freecodecamp.org/news/brute-force-algorithms-explained/

蛮力写算法

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

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

相关文章

NoClassDefFoundError和ClassNotFoundException之间有什么区别?是由什么导致的?

问题: NoClassDefFoundError和ClassNotFoundException之间有什么区别?是由什么导致的? NoClassDefFoundError和ClassNotFoundException之前的区别是什么? 是什么导致它们被抛出?这些问题我们要怎么样解决? 当我在为了引入新的jar包而修改现有代码…

关于Tensorflow安装opencv和pygame

1.安装opencv https://www.lfd.uci.edu/~gohlke/pythonlibs/#opencv C:\ProgramData\Anaconda3\Lib\site-packages>pip install opencv_python-3.3.1-cp36-cp36m-win_amd64.whlProcessing c:\programdata\anaconda3\lib\site-packages\opencv_python-3.3.1-cp36-cp36m-win_a…

内置的常用协议实现模版

SuperSocket内置的常用协议实现模版 中文(中国)Toggle Dropdownv1.6Toggle Dropdown关键字: TerminatorReceiveFilter, CountSpliterReceiveFilter, FixedSizeReceiveFilter, BeginEndMarkReceiveFilter, FixedHeaderReceiveFilter 阅读了前面一篇文档之…

机器学习 来源框架_机器学习的秘密来源:策展

机器学习 来源框架成功的机器学习/人工智能方法 (Methods for successful Machine learning / Artificial Intelligence) It’s widely stated that data is the new oil, and like oil, data needs the right refinement to evolve to be utilised perfectly. The power of ma…

linux gcc 示例_最好的Linux示例

linux gcc 示例Linux is a powerful operating system that powers most servers and most mobile devices. In this guide, we will show you examples of how to use some of its most powerful features. This involves using the Bash command line.Linux是功能强大的操作系…

帆软报表和jeecg的进一步整合--ajax给后台传递map类型的参数

下面是页面代码&#xff1a; <% page language"java" contentType"text/html; charsetUTF-8" pageEncoding"UTF-8"%> <%include file"/context/mytags.jsp"%> <% String deptIds (String)request.getAttribute("…

@Nullable 注解的用法

问题&#xff1a;Nullable 注解的用法 我看到java中的一些方法声明为: void foo(Nullable Object obj){…}在这里Nullable是什么意思?这是不是意味着输入可以为空? 没有这个注解&#xff0c;输入仍然可以是null&#xff0c;所以我猜这不是它的用法? 回答一 它清楚地说明…

WebLogic调用WebService提示Failed to localize、Failed to create WsdlDefinitionFeature

在本地Tomcat环境下调用WebService正常&#xff0c;但是部署到WebLogic环境中&#xff0c;则提示警告&#xff1a;[Failed to localize] MEX0008.PARSING_MDATA_FAILURE<SOAP_1_2 ......警告&#xff1a;[Failed to localize] MEX0008.PARSING_MDATA_FAILURE<SOAP_1_1 ..…

呼吁开放外网_服装数据集:呼吁采取行动

呼吁开放外网Getting a dataset with images is not easy if you want to use it for a course or a book. Yes, there are many datasets with images, but few of them are suitable for commercial or educational use.如果您想将其用于课程或书籍&#xff0c;则获取带有图像…

git push命令_Git Push命令解释

git push命令The git push command allows you to send (or push) the commits from your local branch in your local Git repository to the remote repository.git push命令允许您将提交(或推送 )从本地Git存储库中的本地分支发送到远程存储库。 To be able to push to you…

在Java里面使用Pairs或者二元组

问题&#xff1a;在Java里面使用Pairs或者二元组 在Java里面&#xff0c;我的Hashtable要用到一个元组结构。在Java里面&#xff0c;我可以使用的什么数据结构呢&#xff1f; Hashtable<Long, Tuple<Set<Long>,Set<Long>>> table ...回答一 我不认…

github 搜索技巧

1、关键词 指定开发语言 bitcoin language:javascript 2、关键词 stars 数量 forks 数量 bitcoin stars:>100 forks:>50

React JS 组件间沟通的一些方法

刚入门React可能会因为React的单向数据流的特性而遇到组件间沟通的麻烦&#xff0c;这篇文章主要就说一说如何解决组件间沟通的问题。 1.组件间的关系 1.1 父子组件 ReactJS中数据的流动是单向的&#xff0c;父组件的数据可以通过设置子组件的props传递数据给子组件。如果想让子…

数据可视化分析票房数据报告_票房收入分析和可视化

数据可视化分析票房数据报告Welcome back to my 100 Days of Data Science Challenge Journey. On day 4 and 5, I work on TMDB Box Office Prediction Dataset available on Kaggle.欢迎回到我的100天数据科学挑战之旅。 在第4天和第5天&#xff0c;我将研究Kaggle上提供的TM…

sql limit子句_SQL子句解释的位置:之间,之间,类似和其他示例

sql limit子句什么是SQL Where子句&#xff1f; (What is a SQL Where Clause?) WHERE子句(和/或IN &#xff0c; BETWEEN和LIKE ) (The WHERE Clause (and/or, IN , BETWEEN , and LIKE )) The WHERE clause is used to limit the number of rows returned.WHERE子句用…

在Java里面使用instanceof的性能影响

问题&#xff1a;在Java里面使用instanceof的性能影响 我正在写一个应用程序&#xff0c;其中一种设计方案包含了instanceof操作的大量使用。虽然我知道面向对象设计通常试图避免使用instanceof&#xff0c;但那是另一回事了&#xff0c;这个问题纯粹只是讨论与性能有关。我想…

Soot生成控制流图

1.将soot.jar文件复制到工程bin目录下&#xff1b;2.在cmd中执行如下命令java -cp soot-trunck.jar soot.tools.CFGViewer --soot-classpath .;"%JAVA_HOME%"\jre\lib\rt.jar com.wauoen.paper.classes.Activity其中&#xff0c;JAVA_HOME是jdk目录&#xff1b;com.w…

Centos 6.5安装MySQL-python

报错信息&#xff1a;Using cached MySQL-python-1.2.5.zip Complete output from command python setup.py egg_info: sh: mysql_config: command not found Traceback (most recent call last): File "<string>", line 1, in <module&g…

react 最佳实践_最佳React教程

react 最佳实践React is a JavaScript library for building user interfaces. It was voted the most loved in the “Frameworks, Libraries, and Other Technologies” category of Stack Overflow’s 2017 Developer Survey.React是一个用于构建用户界面JavaScript库。 在S…

先知模型 facebook_Facebook先知

先知模型 facebook什么是先知&#xff1f; (What is Prophet?) “Prophet” is an open-sourced library available on R or Python which helps users analyze and forecast time-series values released in 2017. With developers’ great efforts to make the time-series …