”工欲善其事,必先利其器。“—孔子《论语.录灵公》
首页 > 编程 > DSA 和 Big O 表示法简介

DSA 和 Big O 表示法简介

发布于2024-10-31
浏览:346

Intro to DSA & Big O Notation

掌握 DSA 的注意事项:

Master DSA“有资格”获得向 S/w Ers 提供的高薪。
DSA 是软件工程的主要部分。
在编写代码之前,请确保您了解大局,然后深入了解细节。
这一切都是为了直观地理解概念,然后通过任何 l/g 将这些概念翻译成代码,因为 DSA 与语言无关。
每个即将到来的概念都以某种方式与之前的概念相关联。因此,除非您通过练习彻底掌握了这个概念,否则不要跳话题或继续前进。
当我们直观地学习概念时,我们会对材料有更深入的理解,从而帮助我们更长时间地保留知识。
如果您遵循这些建议,您将不会有任何损失。

Linear DS:
Arrays
LinkedList(LL) & Doubly LL (DLL)
Stack
Queue & Circular Queue

Non-linear DS:
Trees
Graphs

大 O 表示法

理解这种表示法对于算法的性能比较至关重要。
它是一种比较算法效率的数学方法。

时间复杂度

代码运行得越快,它就越低
V. 大多数采访的impt。

空间复杂度

由于存储成本低,与时间复杂度相比很少被考虑。
需要被理解,因为面试官也可能会问你这个。

三个希腊字母:

  1. 欧米茄
  2. 西塔
  3. Omicron 即 Big-O [最常见]

算法案例

  1. 最佳情况[用 Omega 表示]
  2. 平均情况[用 Theta 表示]
  3. 最坏情况[用 Omicron 表示]

从技术上讲,不存在平均情况 Big-O 的最佳情况。它们分别用 omega 和 theta 表示。
我们总是在衡量最坏的情况。

## O(n): Efficient Code
Proportional
Its simplified by dropping the constant values.
An operation happens 'n' times, where n is passed as an argument as shown below.
Always going to be a straight line having slope 1, as no of operations is proportional to n.
X axis - value of n.
Y axis - no of operations 

// O(n)
function printItems(n){
  for(let i=1; i





## O(n^2):
Nested loops.
No of items which are output in this case are n*n for a 'n' input.
function printItems(n){
  for(let i=0; i
## O(n^3):
No of items which are output in this case are n*n*n for a 'n' input.
// O(n*n*n)
function printItems(n){
  for(let i=0; i O(n*n)


## Drop non-dominants:
function xxx(){
  // O(n*n)
  Nested for loop

  // O(n)
  Single for loop
}
Complexity for the below code will O(n*n)   O(n) 
By dropping non-dominants, it will become O(n*n) 
As O(n) will be negligible as the n value grows. O(n*n) is dominant term, O(n) is non-dominnat term here.
## O(1):
Referred as Constant time i.e No of operations do not change as 'n' changes.
Single operation irrespective of no of operands.
MOST EFFICIENT. Nothing is more efficient than this. 
Its a flat line overlapping x-axis on graph.


// O(1)
function printItems(n){
  return n n n n;
}
printItems(3);


## Comparison of Time Complexity:
O(1) > O(n) > O(n*n)
## O(log n)
Divide and conquer technique.
Partitioning into halves until goal is achieved.

log(base2) of 8 = 3 i.e we are basically saying 2 to what power is 8. That power denotes the no of operations to get to the result.

Also, to put it in another way we can say how many times we need to divide 8 into halves(this makes base 2 for logarithmic operation) to get to the single resulting target item which is 3.

Ex. Amazing application is say for a 1,000,000,000 array size, how many times we need to cut to get to the target item.
log(base 2) 1,000,000,000 = 31 times
i.e 2^31 will make us reach the target item.

Hence, if we do the search in linear fashion then we need to scan for billion items in the array.
But if we use divide & conquer approach, we can find it in just 31 steps.
This is the immense power of O(log n)

## Comparison of Time Complexity:
O(1) > O(log n) > O(n) > O(n*n)
Best is O(1) or O(log n)
Acceptable is O(n)
O(n log n) : 
Used in some sorting Algos.
Most efficient sorting algo we can make unless we are sorting only nums.
Tricky Interview Ques: Different Terms for Inputs.
function printItems(a,b){
  // O(a)
  for(let i=0; i





## Arrays
No reindexing is required in arrays for push-pop operations. Hence both are O(1).
Adding-Removing from end in array is O(1)

Reindexing is required in arrays for shift-unshift operations. Hence, both are O(n) operations, where n is no of items in the array.
Adding-Removing from front in array is O(n)

Inserting anywhere in array except start and end positions:
myArr.splice(indexForOperation, itemsToBeRemoved, ContentTobeInsterted)
Remaining array after the items has to be reindexed.
Hence, it will be O(n) and not O(0.5 n) as Big-O always meassures worst case, and not avg case. 0.5 is constant, hence its droppped.
Same is applicable for removing an item from an array also as the items after it has to be reindexed.


Finding an item in an array:
if its by value: O(n)
if its by index: O(1)

Select a DS based on the use-case.
For index based, array will be a great choice.
If a lot of insertion-deletion is perform in the begin, then use some other DS as reindexing will make it slow.

n=100 的时间复杂度比较:

O(1) = 1
O(log 100) = 7
O(100) = 100
O(n^2) = 10,000

n=1000 的时间复杂度比较:

O(1) = 1
O(log 1000) = ~10
O(1000) = 1000
O(1000*1000) = 1,000,000

主要关注这4个:
大 O(n*n):嵌套循环
大 O(n):比例
Big O(log n):分而治之
大 O(1):常数

O(n!) 通常发生在我们故意编写糟糕的代码时。
O(n*n) 是可怕的算法
O(n log n) 是可以接受的,并被某些排序算法使用
O(n) :可接受
O(log n), O(1) :最佳

所有 DS 的空间复杂度几乎相同,即 O(n)。
使用排序算法

,空间复杂度从 O(n) 到 O(log n) 或 O(1) 不等

时间复杂度因算法而异

除数字(如字符串)之外的排序的最佳时间复杂度是 O(n log n),在快速排序、合并排序、时间排序、堆排序中都是如此。

应用所学知识的最佳方法是尽可能多地编写代码。

根据每个 DS 的优缺点,选择在哪个问题陈述中选择哪个 DS。

更多信息,请参考:bigocheatsheet.com

版本声明 本文转载于:https://dev.to/mahf001/intro-to-dsa-big-o-notation-5gm9?1如有侵犯,请联系[email protected]删除
最新教程 更多>
  • 有哪些资源可用于实现彗星模式?
    有哪些资源可用于实现彗星模式?
    Comet:服务器推送模式服务器推送是一种在服务器和 Web 客户端之间实现双向通信的技术,已经获得了显着的成果最近的兴趣。 Comet 设计模式作为在 JavaScript 应用程序中实现服务器推送的一种有前途的方法而出现。本问题探讨了 Comet 模式的 jQuery 实现和通用资源的可用性。j...
    编程 发布于2024-11-07
  • 探索心理健康门诊项目的类型
    探索心理健康门诊项目的类型
    门诊心理健康治疗方法是一种不强调在医疗机构过夜的方案。这种疗法主要在医生办公室、医院或诊所提供,在那里人们可以进行定期治疗,以进行高度结构化的定期治疗。 在 COVID-19 大流行期间,全球约有 2.75 亿吸毒者。比前几十年高出近 22%。吸毒成瘾的增加导致全美吸毒过量人数创历史新高。好消息是门...
    编程 发布于2024-11-07
  • 如何在 C++ Builder 中初始化 OpenGL 帧:分步指南
    如何在 C++ Builder 中初始化 OpenGL 帧:分步指南
    如何在 C Builder 中初始化 OpenGL 帧在 C Builder 中的窗体内初始化 OpenGL 帧可能是一项具有挑战性的任务。在尝试调整现有 OpenGL 代码(例如问题中提供的示例)时,您可能会遇到困难。要正确创建和渲染 OpenGL 帧,请按照下列步骤操作:使用 TForm::Ha...
    编程 发布于2024-11-07
  • 利用这些罕见的 HTML 属性增强您的 Web 开发技能
    利用这些罕见的 HTML 属性增强您的 Web 开发技能
    Introduction HTML attributes are most often referred to as the overlooked heroes of web development, playing a crucial role in shaping the st...
    编程 发布于2024-11-07
  • 如何在 Python 中将字符串转换为二进制:ASCII 与 Unicode?
    如何在 Python 中将字符串转换为二进制:ASCII 与 Unicode?
    在Python中将字符串转换为二进制在Python中,您可能会遇到需要将字符串表示为二进制数字序列的情况。这对于多种原因都很有用,例如数据加密或二进制文件操作。使用 bin() 函数将字符串转换为二进制的最简单方法就是使用bin()函数。该函数接受一个字符串作为输入,并将其二进制表示形式返回为字符串...
    编程 发布于2024-11-07
  • 为什么从 Java 中的匿名内部类访问外部实例变量需要是 Final?
    为什么从 Java 中的匿名内部类访问外部实例变量需要是 Final?
    Java内部类:为什么必须使用“最终”外部实例变量在Java中定义匿名内部类时,您可能会遇到将外部实例变量标记为“final”的要求。本文探讨了这个约束背后的原因。正如提供的代码中提到的,实例变量 jtfContent 必须声明为 Final 才能在内部类中访问。这一要求源于 Java 处理匿名内部...
    编程 发布于2024-11-07
  • 理解 Python 中的关键字参数
    理解 Python 中的关键字参数
    When you're programming in Python, knowing how to pass arguments to functions is key for writing clear, flexible, and easy-to-maintain code. One powe...
    编程 发布于2024-11-07
  • 如何防止打印时DIV跨页拆分?
    如何防止打印时DIV跨页拆分?
    打印问题:防止 DIV 跨页面分叉遇到动态 DIV 在页面之间切成两半的打印困境?当尝试打印具有大量可变高度 DIV 元素的冗长文档时,就会出现此问题。CSS 救援解决方案为了解决此问题,CSS 属性打破了 -里面来拯救。通过指定值避免,您可以确保渲染引擎防止 DIV 中途分割。这是代码片段:@me...
    编程 发布于2024-11-07
  • Python 是强类型语言吗?
    Python 是强类型语言吗?
    Python 是强类型语言吗?Python 中的强类型概念引起了一些混乱,因为该语言允许变量改变执行期间的类型。然而,Python 确实是强类型的,尽管是动态的。Python 中的强类型强类型可确保值保持其声明的类型,除非显式转换。在Python中,这意味着变量没有固定的类型,而是它们所保存的值有类...
    编程 发布于2024-11-07
  • 购买亚马逊评论
    购买亚马逊评论
    https://dmhelpshop.com/product/buy-amazon-reviews/ 购买亚马逊评论 当谈到在亚马逊上进行商务和销售产品时,评论的重要性怎么强调都不为过。一条评论就可以决定购买的成败,而潜在的买家往往会犹豫是否购买缺乏评论的产品。缺乏评论可以起到威慑作用,这就是为什么...
    编程 发布于2024-11-07
  • 使用 DTO 简化 Laravel 中的数据传输
    使用 DTO 简化 Laravel 中的数据传输
    这是有关如何使用 Laravel Data: 创建数据传输对象 (DTO) 的分步示例 1. 安装Laravel数据包 首先,使用 Composer 安装 spatie/laravel-data 包。该软件包有助于创建 DTO 并有效管理数据。 composer require sp...
    编程 发布于2024-11-07
  • Go中如何查找与源文件相关的文件?
    Go中如何查找与源文件相关的文件?
    在Go中查找相对于源文件的文件与解释性语言不同,Go程序是经过编译的,执行时不需要源文件。因此,Ruby 中使用 __FILE__ 来相对于源文件定位文件的概念在 Go 中并不适用。相反,Go 提供了 runtime.Caller 函数,该函数返回调用时的文件名。汇编。但是,此信息对于动态定位文件并...
    编程 发布于2024-11-07
  • 如何在 Python 中高效地统计项目出现次数?
    如何在 Python 中高效地统计项目出现次数?
    提高效率的 Python 中项目频率计数计算列表中项目的出现次数是一项常见的编程任务。这个问题探讨了在 Python 中解决此问题的更有效方法。最初提供的代码虽然功能强大,但涉及到对列表进行两次迭代,从而导致性能不佳。关键的挑战在于找到一种 Pythonic 方法来计算项目出现次数,而无需重复遍历列...
    编程 发布于2024-11-07
  • 探索异步 Deepgram API:使用 Python 进行语音转文本
    探索异步 Deepgram API:使用 Python 进行语音转文本
    今天将探索用于将语音转换为文本的 Deepgram API [转录]。无论是构建语音助手、转录会议还是创建语音控制应用程序,Deepgram 都让入门变得比以往更容易。 什么是 Deepgram? Deepgram 是一个强大的语音识别平台,它使用先进的机器学习模型来实时转录音频。它...
    编程 发布于2024-11-07

免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。

Copyright© 2022 湘ICP备2022001581号-3