线性插值插值_揭秘插值搜索

线性插值插值

搜索算法指南 (Searching Algorithm Guide)

Prior to this article, I have written about Binary Search. Check it out if you haven’t seen it. In this article, we will be discussing Interpolation Search, which is an improvement of Binary Search when the values in the sorted array are uniformly distributed.

在本文之前,我已经撰写了有关Binary Search的文章 。 如果您没有看过,请检查一下。 在本文中,我们将讨论插值搜索,它是对已排序数组中的值进行均匀分布时二进制搜索的一种改进。

You might recall that Binary Search is already running in O(log n) time complexity. Can there be any other methods that perform even better? Ummm… partly yes. We will dive into it shortly.

您可能还记得二进制搜索已经以O(log n)时间复杂度运行。 还能有其他方法表现更好吗? 嗯...部分是。 我们将在短期内深入探讨。

什么是插值搜索? (What is Interpolation Search?)

Interpolation Search is another efficient searching technique. This method can outrun binary search in cases where the elements of the array are uniformly distributed. Interpolation Search estimates the position of the key value in the array. This can be achieved by taking into account the smallest and the largest element in the array and the length of the array.

插值搜索是另一种有效的搜索技术。 在数组元素均匀分布的情况下,此方法可以胜过二进制搜索。 插值搜索估计键值在数组中的位置。 这可以通过考虑数组中最小和最大的元素以及数组的长度来实现。

It is based on the thinking that if the key value is larger (closer to the largest element), it’s position is likely located to the end of the array. The same thing goes for a key with a smaller value.

基于以下想法:如果键值较大(更靠近最大元素),则其位置可能位于数组的末尾。 具有较小值的键也是如此。

它是如何工作的? (How Does it Work?)

There are the 6 main steps in doing Interpolation Search, which are:

进行插值搜索有6个主要步骤,它们是:

  1. Estimates the middle position for the array and compares this element to the desired key.

    估计数组的中间位置,并将此元素与所需键进行比较。
  2. If the key matches the middle element, return the middle location.

    如果键与中间元素匹配,则返回中间位置。
  3. If the key is smaller than the middle element, then the key can only lie in the left subarray. Focus on the left subarray

    如果键小于中间元素,则键只能位于左子数组中。 专注于左侧子数组
  4. Else, we move our focus only to the right subarray.

    否则,我们仅将焦点移到正确的子数组上。
  5. Repeat steps 1, 2, 3, and 4 until the desired key is found or every subarray has been checked.

    重复步骤1、2、3和4,直到找到所需的键或已检查每个子数组。
  6. If there is no match in the array, return -1

    如果数组中没有匹配项,则返回-1

插值搜索示例 (Interpolation Search Example)

As usual, the pseudo-code will be provided first before we move to the implementation in different programming languages.

与往常一样,在我们使用不同的编程语言来实现之前,将首先提供伪代码。

Interpolation Search Pseudo-Code

插值搜索伪代码

Now, we will move on to the real code for 3 different languages, Python, C, and JavaScript.

现在,我们将继续使用3种不同语言(Python,C和JavaScript)的真实代码。

Interpolation Search Code in Python

Python中的插值搜索代码

Interpolation Search Code in C

C语言中的插补搜索代码

Interpolation Search Code in JavaScript

JavaScript中的插值搜索代码

插值搜索的时间复杂度 (Time Complexity of Interpolation Search)

In smaller arrays, Interpolation Search is slower than Binary Search. The reason behind this is Interpolation Search requires more computations. However, larger arrays and the ones that are uniformly distributed are Interpolation Search’s forte. The growth rate of Interpolation Search time complexity is smaller compared to Binary Search.

在较小的数组中,插值搜索比二进制搜索慢。 其背后的原因是插值搜索需要更多的计算。 但是,较大的数组和均匀分布的数组是插值搜索的强项。 与二值搜索相比,插值搜索时间复杂度的增长率较小。

The best case for Interpolation Search happens when the middle (our approximation) is the desired key. This makes the best case time complexity is O(1). In the worst-case scenario, we will need to traverse all of the elements in the array, resulting in the O(n) time complexity. The good news is for the average case, the time complexity is as small as O(log log n).

当中间(我们的近似值)是所需的关键点时,就会发生插值搜索的最佳情况。 最好的情况是时间复杂度为O(1)。 在最坏的情况下,我们将需要遍历数组中的所有元素,从而导致O(n)时间复杂度。 好消息是对于一般情况,时间复杂度小至O(log log n)。

结论 (Conclusion)

Summing up, learning how to apply Interpolation Search will enrich your knowledge not only about algorithms but also as a programmer. Undoubtedly, it will have a place in your programming toolkit. However, it should always be remembered:

总结一下,学习如何应用插值搜索不仅可以丰富您的算法知识,还可以作为一名程序员。 毫无疑问,它将在您的编程工具包中占有一席之地。 但是,应始终记住:

  1. Similar to Binary Search, Interpolation Search only works in sorted arrays.

    与二进制搜索类似,插值搜索仅适用于排序数组。
  2. You need to have direct access to the elements of the array.

    您需要直接访问数组的元素。

There is no easy way to become an expert programmer, the only available path is by persistently learning about the key concepts one by one. So, if I can understand these concepts, so can you.

成为专家程序员没有简单的方法,唯一可行的途径是持续不断地逐一学习关键概念。 因此,如果我能理解这些概念,那么您也可以。

“The secret to getting ahead is getting started.”

“取得成功的秘诀就是开始。”

— Mark Twain

—马克·吐温

Let’s go to the top together!

让我们一起去顶吧!

Regards,

问候,

Radian Krisno

拉迪安·克里斯诺(Radian Krisno)

翻译自: https://towardsdatascience.com/demystifying-interpolation-search-45dca5c24115

线性插值插值

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

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

相关文章

其他命令

keys *这个可以全部的值del name 这个可以删除某个127.0.0.1:6379> del s_set(integer) 1127.0.0.1:6379> keys z*(匹配)1) "z_set2"2) "z_set"127.0.0.1:6379> exists sex(integer) 0 127.0.0.1:6379> get a"3232…

建按月日自增分区表

一、建按月自增分区表: 1.1建表SQL> create table month_interval_partition_table (id number,time_col date) partition by range(time_col)2 interval (numtoyminterval(1,month))3 (4 partition p_month_1 values less than (to_date(2014-01-01,yyyy-mm…

#1123-JSP隐含对象

JSP 隐含对象 JSP隐含对象是JSP容器为每个页面提供的Java对象,开发者可以直接使用它们而不用显式声明。JSP隐含对象也被称为预定义变量。 JSP所支持的九大隐含对象: 对象,描述 request,HttpServletRequest类的实例 response&#…

按照时间,每天分区;按照数字,200000一个分区

按照时间,每天分区 create table test_p(id number,createtime date) partition by range(createtime) interval(numtodsinterval(1,day)) store in (users) ( partition test_p_p1 values less than(to_date(20140110,yyyymmdd)) ); create index index_test_p_id …

如果您不将Docker用于数据科学项目,那么您将生活在1985年

重点 (Top highlight)One of the hardest problems that new programmers face is understanding the concept of an ‘environment’. An environment is what you could say, the system that you code within. In principal it sounds easy, but later on in your career yo…

jmeter对oracle压力测试

下载Oracle的jdbc数据库驱动包,注意Oracle数据库的版本,这里使用的是:Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production; 一般数据库的驱动包文件在安装路径下:D:\oracle\product\10.2.…

集合里面的 E是泛型 暂且认为是object

集合里面的 E是泛型 暂且认为是object转载于:https://www.cnblogs.com/classmethond/p/10011374.html

docker部署flask_使用Docker,GCP Cloud Run和Flask部署Scikit-Learn NLP模型

docker部署flaskA brief guide to building an app to serve a natural language processing model, containerizing it and deploying it.构建用于服务自然语言处理模型,将其容器化和部署的应用程序的简要指南。 By: Edward Krueger and Douglas Franklin.作者&am…

异常处理的原则

1:函数内部如果抛出需要检测的异常,那么函数上必须要声明,否则必须在函数内用try catch捕捉,否则编译失败。2:如果调用到了声明异常的函数,要么try catch 要么throws,否则编译失败。3&#xff…

模块化整理

#region常量#endregion#region 事件#endregion#region 字段#endregion#region 属性#endregion#region 方法#endregion#region Unity回调#endregion#region 事件回调#endregion#region 帮助方法#endregion来自为知笔记(Wiz)转载于:https://www.cnblogs.com/soviby/p/10013294.ht…

在oracle中处理日期大全

在oracle中处理日期大全 TO_DATE格式 Day: dd number 12 dy abbreviated fri day spelled out friday ddspth spelled out, ordinal twelfth Month: mm number 03 mon abbreviated mar month spelled out march Year: yy two digits 98 yyyy four …

BZOJ4868 Shoi2017期末考试(三分+贪心)

容易想到枚举最晚发布成绩的课哪天发布,这样与ti和C有关的贡献固定。每门课要么贡献一些调节次数,要么需要一些调节次数,剩下的算贡献也非常显然。这样就能做到平方级别了。 然后大胆猜想这是一个凸函数三分就能A掉了。具体的,延迟…

SQL的执行计划

SQL的执行计划实际代表了目标SQL在Oracle数据库内部的具体执行步骤,作为调优,只有知道了优化器选择的执行计划是否为当前情形下最优的执行计划,才能够知道下一步往什么方向。 执行计划的定义:执行目标SQL的所有步骤的组合。 我们首…

问卷 假设检验 t检验_真实问题的假设检验

问卷 假设检验 t检验A statistical Hypothesis is a belief made about a population parameter. This belief may or might not be right. In other words, hypothesis testing is a proper technique utilized by scientist to support or reject statistical hypotheses. Th…

webpack打包ES6降级ES5

Babel是一个广泛使用的转码器,babel可以将ES6代码完美地转换为ES5代码,所以我们不用等到浏览器的支持就可以在项目中使用ES6的特性。 安装babel实现ES6到ES5 npm install -D babel-core babel-preset-es2015 复制代码安装babel-loader npm install -D ba…

[转帖]USB-C和Thunderbolt 3连接线你搞懂了吗?---没搞明白.

USB-C和Thunderbolt 3连接线你搞懂了吗? 2018年11月25日 07:30 6318 次阅读 稿源:威锋网 3 条评论按照计算行业的风潮,USB Type-C 将会是下一代主流的接口。不过,在过去两年时间里,关于 USB-C、Thunderbolt 3、USB 3.1…

sqldeveloper的查看执行计划快捷键F10

简介:本文全面详细介绍oracle执行计划的相关的概念,访问数据的存取方法,表之间的连接等内容。并有总结和概述,便于理解与记忆!目录---一.相关的概念Rowid的概念Recursive Sql概念Predicate(谓词)DRiving Table(驱动表)…

大数据技术 学习之旅_为什么聚焦是您数据科学之旅的关键

大数据技术 学习之旅David Robinson, a data scientist, has said the following quotes:数据科学家David Robinson曾说过以下话: “When you’ve written the same code 3 times, write a function.”“当您编写了3次相同的代码时,请编写一个函数。” …

SQL 语句

去重字段里的值 SELECT DISTINCT cat_id,goods_sn,repay FROM ecs_goods where cat_id ! 20014 删除除去 去重字段 DELETE FROM ecs_goods where goods_id NOT IN ( select bid from (select min(goods_id) as bid from ecs_goods group by cat_id,goods_sn,repay) as b );转…

无监督学习 k-means_无监督学习-第4部分

无监督学习 k-means有关深层学习的FAU讲义 (FAU LECTURE NOTES ON DEEP LEARNING) These are the lecture notes for FAU’s YouTube Lecture “Deep Learning”. This is a full transcript of the lecture video & matching slides. We hope, you enjoy this as much as …