返回卡包市场

Searching algorithms

暂无描述。系统推荐的高质量记忆内容,适合每天坚持背诵学习。

卡片总数: 2内容版本: v4公开卡包更新时间: 8/1/2026

卡片预览 (2 张)

#1
正面 (问题)

How does a linear search work

背面 (解答)

Used to find an item in a list. It checks the first item, if it is not a match it moves onto the next until it is a match

#2
正面 (问题)

How does a binary search work

背面 (解答)

Needs an ordered list. It continuously divides the list in half until the item is found.