最佳适应算法和最坏适应算法_算法:好,坏和丑陋

最佳适应算法和最坏适应算法

by Evaristo Caraballo

通过Evaristo Caraballo

算法:好,坏和丑陋 (Algorithms: The Good, The Bad and The Ugly)

Who has been in Free Code Camp without having the experience of spending hours trying to solve Algorithms?

谁曾参加Free Code Camp,却没有花费大量时间尝试求解算法

At Free Code Camp, we wanted to know why that was the case, and what more we could do to help you a bit.

在Free Code Camp,我们想知道为什么会这样,以及我们还能做些什么来帮助您。

We made two different analyses to have a better idea of what was going on. Data were collected between Nov 2014 to Dec 2015.

我们进行了两种不同的分析,以更好地了解正在发生的事情。 数据收集时间为2014年11月至2015年12月。

One of those analyses consisted of tracking the number of times people pasted their code to be checked by others in relevant Gitter chatrooms. We got data from the Gitter API. After some clean-up we tried to get the names of the functions of each challenge from posted messages at the Help chatroom. Although the data are not precise, it’s a good approximation of what could be happening.

这些分析之一是跟踪人们在相关的Gitter聊天室中粘贴代码以供其他人检查的次数。 我们从Gitter API获取数据。 进行一些清理后,我们尝试从帮助聊天室中发布的消息中获取每个挑战的功能名称。 尽管数据不精确,但是可以很好地近似所发生的事情。

The chart above speaks clearly on its own: algorithms like palindromes, title case, seek and destroy, longest word, reverse string, mutation or chunky monkey are those where many people ask for assistance.

上面的图表清楚地说明了自己:回文,标题大小写,查找和销毁,最长的单词,反向字符串,变异或矮胖的猴子之类的算法是许多人寻求帮助的算法。

Another analysis we made was to take the average time per page that each camper spent on each challenge, using Google Analytics data.

我们进行的另一项分析是使用Google Analytics(分析)数据获取每个露营者在每项挑战上花费的平均每页时间。

Again, the ugly ones are challenges like palindromes, but there are other ones that also look ugly (let’s say 1/4 of the average time per level over the same average time) specially for basic and intermediate levels, like Spinal Tap Case, Pig Latin, Search and Replace, Common Multiple, Sum All Primes, Steamroller, Friendly Date Range, Pairwise, and others.

同样,丑陋的挑战是诸如回文集之类的挑战,但是还有其他挑战看起来也很丑陋(例如,在同一平均时间内每个级别的平均时间的1/4), 特别是对于基础水平和中级水平而言 ,例如Spinal Tap Case,Pig拉丁语,搜索和替换,公倍数,所有素数之和,Steamroller,友好日期范围,成对和其他。

Looking at the results, can we suggest the factors that are affecting the performance of campers with the algorithms?

从结果来看我们能否通过算法提出影响露营者性能的因素

The most apparent reasons, given in a tentative ordering, are:

按暂定顺序给出的最明显的原因是:

  • Campers are finding hard to deal specially with strings, and Regex is a bad word, no matter the level!

    营员发现很难对付 ,而正则表达式无论级别高低都是一个坏词!

  • There are some numeric challenges that are making camper’s life difficult, particularly those which are suitable for recursive calls.

    有一些数字难题使露营者的生活变得困难,尤其是那些适合递归调用的难题。

  • Another common problem is dealing with nested collections of arrays/objects.

    另一个常见的问题是处理数组/对象的嵌套集合

  • Difficulty with concepts and definitions is usual. For example, the concept of “symmetric difference” (with a Free Code Camp algorithm with the same name) is usually troubling because many campers don’t understand the concept properly, despite the inclusion of a widely accepted mathematical definition.

    通常很难理解概念和定义 。 例如,“对称差异”的概念(使用具有相同名称的Free Code Camp算法)通常令人不安,因为尽管包含了广泛接受的数学定义,但许多营员仍无法正确理解该概念。

Similarly, looking at the last chart you may be wondering why the time per page seems not to reflect the difficulty of the problem? One explanation could be that the basic and intermediate algorithms are been taken by campers who are just learning to code or seeing JavaScript for the first time. However this is a tentative explanation and may require more analyses.

同样,查看最后一个图表,您可能想知道为什么每页时间似乎不能反映问题的难度 ? 一种解释可能是,基本算法和中间算法是由刚开始学习编码或第一次看到JavaScript的营员采用的。 但是,这只是一个初步的解释,可能需要更多的分析。

If you are reading this and you have already suffered with some of the algorithms, you will realize that you are not alone. For those who are starting with algorithms, I would recommend the following:

如果您正在阅读本文,并且已经受了某些算法的困扰,您将意识到自己并不孤单。 对于那些开始使用算法的人,我建议以下内容:

  • Try to see if you can solve the easiest first: you might find some practice solving those that could help you to deal with the more difficult ones later…

    尝试先看看是否可以解决最简单的问题:您可能会找到一些解决方法,可以帮助以后解决更困难的问题……
  • Try to understand the problem! Start by asking what the problem is about.

    尝试了解问题! 首先询问问题所在。
  • Research. Check b0oks, references, and other online courses. And Share. We are offering a lot of help with likely a similar problem like yours. Ask in the chatroom. Send a message to CamperBot. Look at the Wiki. Try pair programming. Visit a Campsite and code with other campers in person. In one of the CodePens I made for this article, I also included links to the Free Code Camp wiki, so you can have a first overview of the problem and how it is normally solved.

    研究。 检查书,参考书和其他在线课程。 和分享。 对于像您这样的类似问题,我们提供了很多帮助。 在聊天室提问。 发信息给CamperBot。 看一下Wiki。 尝试配对编程。 参观营地并亲自与其他营员进行编码。 在我为本文编写的CodePens之一中,我还提供了指向Free Code Camp Wiki的链接,因此您可以初步了解该问题以及通常如何解决该问题。
  • You may already know that the problem is difficult: now the next step is trying to understand why and what make it so hard. This approach is key for algorithmic problem solving, and programming in general. Study, ask, and try again.

    您可能已经知道问题很棘手:现在,下一步就是尝试了解导致问题变得如此困难的原因原因 。 这种方法对于解决算法问题和一般编程至关重要。 研究,询问,然后重试。

  • The data we used for these analyses were for last year: this year SaintPeter and friends have been working hard in modify the curriculum, so you may notice a difference in your performance if you work through the improved Basic JavaScript section. If you haven’t done the updated curriculum it may be helpful to revisit that section.

    我们用于这些分析的数据是去年的:今年, 圣彼得和朋友们一直在努力修改课程表,因此,如果您在改进的“基本JavaScript”部分中工作,您可能会发现性能有所不同。 如果您还没有完成更新的课程表,那么重新访问该部分可能会有所帮助。

  • My bonus advice? Yes, try really hard yourself but… read other peoples’ code, too. When you read a book about JavaScript to learn programming, that is exactly what you are doing. Learn to reverse engineer existing code and to modify it to suit your needs. Why? First, no point in re-inventing the wheel. Second, you learn a lot by understanding the work of those who already solved the problem. Remember: you will find that most of the time you will be reusing modified snippets of a previous code into a new one. So no shame in reading other’s codes. That is part of the nature of Open Source, by the way…

    我的奖金建议? 是的,你要自己努力,但是……也要阅读其他人的代码。 当您阅读有关JavaScript的书以学习编程时,这就是您正在做的事情。 学习对现有代码进行反向工程并进行修改以满足您的需求。 为什么? 首先,重新发明轮子毫无意义。 其次,通过了解已经解决问题的人员的工作,您学到了很多东西。 请记住:您会发现大多数时候您将把先前代码的修改片段重用到新代码中。 因此,在阅读他人的代码时不会感到羞耻。 顺便说一下,这是开放源代码本质的一部分。

Happy Coding!

编码愉快!

I’m also working on related visualizations at bl.ocks.org/evaristoc.

我还在bl.ocks.org/evaristoc上进行相关的可视化工作。

This analysis just scratches the surface of what we can learn from Free Code Camp’s open data. Join our Data Science chat room and help us make sense of all these data.

这种分析只是从表面上我们可以从Free Code Camp的开放数据中学到什么。 加入我们的数据科学聊天室 ,帮助我们理解所有这些数据。

翻译自: https://www.freecodecamp.org/news/algorithms-the-good-the-bad-and-the-ugly-e63db0a9cfb3/

最佳适应算法和最坏适应算法

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

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

相关文章

mysql条件触发器实例_mysql触发器实例一则

例子,实例学习mysql触发器的用法。一,准备二张测试表:1,测试表1复制代码 代码示例:DROP TABLE IF EXISTS test;CREATE TABLE test (id bigint(11) unsigned NOT NULL AUTO_INCREMENT,name varchar(100) NOT NUL…

阿里大数据神预测 胜率仅5.9%中国却1:0胜韩国

写在最前面:这是早晨偶然看到的一篇文章,是对昨天中国却1:0胜韩国的评论。有朋友感慨:努力不放弃的时候,全世界都会帮你。这篇内容很全面的串起阿里巴巴在大数据预测方面的动作,角度很别致,分享…

Python中类、对象与self详解

先介绍一下python中的类与对象/实例。然后详细说明self。说明:对象等同实例,本文称呼不一致时请自行统一 【一】类与对象/实例 1、类 (1)类由名称、属性、方法三部分组成 (2)类是抽象模板,比如学…

面试题28 字符串排列

题目描述 输入一个字符串,按字典序打印出该字符串中字符的所有排列。例如输入字符串abc,则打印出由字符a,b,c所能排列出来的所有字符串abc,acb,bac,bca,cab和cba。 结果请按字母顺序输出。 输入描述: 输入一个字符串,长度不超过9(可能有字符重复),字符只包括大小写字母。 1 cla…

javascript 框架_克服JavaScript框架疲劳

javascript 框架by Tero Parviainen通过Tero Parviainen 克服JavaScript框架疲劳 (Overcoming JavaScript Framework Fatigue) The JavaScript community is suffering from a wave of framework fatigue. It’s caused by the massive outpouring of new frameworks, techniq…

java开发环境:还在配classpath?你out啦!

2019独角兽企业重金招聘Python工程师标准>>> 先说结论:只需要配置JAVA_HOME和path路径即可,无需配置classpath 参考Oracle官网的说明: The class path tells JDK tools and applications where to find third-party and user-defi…

qpython3可以调用哪些库_Python3 如何使用asyncio库在调用第三方模块(存在IO等待)的情况下实现协程?...

问题描述demo中有一个 task_check 的模块,底层是用urllib实现,请问如果要实现使用 asyncio 库实现协程操作,需要修改这个模块的底层代码吗?如何修改? 往大佬指点问题出现的环境背景及自己尝试过哪些方法平时都是使用 gevent 库和 monkey.patch_all() 实现协程,但发现 gevent …

.Net Core 商城微服务项目系列(二):使用Ocelot + Consul构建具备服务注册和发现功能的网关...

1.服务注册 在上一篇的鉴权和登录服务中分别通过NuGet引用Consul这个包,同时新增AppBuilderExtensions类: public static class AppBuilderExtensions{public static IApplicationBuilder RegisterConsul(this IApplicationBuilder app,IApplicationLife…

java打印数组_Java中打印数组内容的方式有哪些?

下面是几种常见的打印方式。方法一:使用循环打印。public class Demo {public static void main(String[] args) {String[] infos new String[] {"Java", "Android", "C/C", "Kotlin"};StringBuffer strBuffer new Strin…

$(function() {})

$(function() {});是$(document).ready(function(){ })的简写, 最早接触的时候也说$(document).ready(function(){ })这个函数是用来取代页面中的window.onload; 用来在DOM加载完成之后执行一系列预先定义好的函数。

恢复工具

EasyRecovery http://www.upantool.com/hfxf/huifu/2011/EasyRecovery_V6.22.html转载于:https://www.cnblogs.com/cb168/p/5359133.html

四参数坐标转换c++_GPSRTK坐标转换及四参数、七参数适用条件

工程测量仪器已由经纬仪、全站仪过渡到GNSS(全球卫星导航系统),特别是公路行业,GPS-RTK作为GNSS的一种应用目前已十分普及。现阶段GPS-RTK以WGS-84 坐标系统为主流,所发布的星历参数也是基于此坐标系统,但随着北斗导航系统的逐步完…

教主的魔法

传送门 这道题序列很长,但是操作数很少,然后也没想到什么好的数据结构来维护,那就分块吧。 感觉维护的过程很好想,修改的时候对于整个块都在内的直接打标记,两个零散的区间暴力重构,重新排序。查询的时候&a…

obs自定义编码设置_通过7个步骤设置OBS进行实时编码

obs自定义编码设置by Wesley McCann韦斯利麦肯(Wesley McCann) 通过7个步骤设置OBS进行实时编码 (Setting up OBS for Live Coding in 7 Steps) Twitch TV is a popular live-streaming service. You traditionally used Twitch to stream yourself playing video games, but …

java hadoop api_Hadoop 系列HDFS的Java API( Java API介绍)

HDFS的Java APIJava API介绍将详细介绍HDFS Java API,一下节再演示更多应用。Java API 官网如上图所示,Java API页面分为了三部分,左上角是包(Packages)窗口,左下角是所有类(All Classes是)窗口,右侧是详情窗口。这里推…

最大连通子数组

这次是求联通子数组的求和,我们想用图的某些算法,比如迪杰斯特拉等,但是遇到了困难。用BFS搜索能达到要求,但是还未能成功。 那么我们这样想,先将每行的最大子数组之和,然后再将这些最大之和组成一个数组&a…

redis的zset的底层实现_Redis(三)--- Redis的五大数据类型的底层实现

1、简介Redis的五大数据类型也称五大数据对象;前面介绍过6大数据结构,Redis并没有直接使用这些结构来实现键值对数据库,而是使用这些结构构建了一个对象系统redisObject;这个对象系统包含了五大数据对象,字符串对象(st…

科学计算机简单编程_是“计算机科学”还是“编程”?

科学计算机简单编程by Sam Corcos由Sam Corcos 是“计算机科学”还是“编程”? (Is It “Computer Science” or “Programming”?) 教育政策白皮书(提示:它们不是同一个东西) (An education policy white paper (hint: they’re not the same thing))…

[Matlab] 画图命令

matlab画图命令,不定时更新以便查找 set(gcf, color, [1 1 1]);     % 使图背景为白色 alpha(0.4);           %设置平面透明度 plot(Circle1,Circle2,k--,linewidth,1.25);  % k--设置线型  ‘linewidth’,1.25  设置线宽度为1.25 %线型   …

django入门记录 2

1. 创建一个app, python manage.py startapp appname 2. 设计model,在appname/目录下编辑好model 3. 检测model的修改,python manage.py makemigrations appname 4. 自动执行数据库迁移,并同步管理数据库结构, python…