Python3查找算法01 - 顺序查找

  • 原创
  • Madman
  • /
  • /
  • 0
  • 8477 次阅读

Synopsis: 先介绍一种最低效的查找算法,顺序查找,它适合于存储结构为顺序存储或链接存储的线性表。无序查找是被查找数列有序无序均可,有序查找是被查找数列必须为有序数列。输入的数列如果是有序的,我们可以稍微改进一下这个算法的效率

代码已上传到 https://github.com/wangy8961/python3-algorithms ,欢迎star

1. 顺序查找

顺序查找(Sequential Search)也称为线性查找,它从线性表的一端开始,顺序扫描,依次将扫描到的元素值与查找值比较,如果相等则表示查找成功,直接返回True;如果不等则继续往后遍历,当遍历完整个线性表还没有找到,则表示查找失败,返回False

2. 查找无序数列

def sequential_search(L, item):
    '''顺序查找,输入的列表是无序的'''
    pos = 0
    found = False  # 标记是否已找到数据项

    while pos < len(L) and not found:
        if L[pos] == item:  # 表示找到了
            found = True
        else:
            pos += 1

    return found


if __name__ == '__main__':
    L1 = [54, 26, 
                                
                            
  • John
  • 邱晨100
  • nanber-WQ
  • gaofei
  • ChenJanson
  • Click to receive your instant cash prize cv505813.tw1.ru uV
  • Game and get instant cash rewards cv505813.tw1.ru vh
  • This cash gift is for you alone cv505813.tw1.ru 9A
  • A random payment has been successfully made cv505813.tw1.ru Ol
  • Pick Up Your Cash Incentive Now cv505813.tw1.ru us
  • Get Money Just for Registering cx180165.tw1.ru d9
  • Claim Awards for Your Participation cv505813.tw1.ru Qa
  • You have located funds waiting to be claimed cv505813.tw1.ru IN
  • Test review and get paid cv505813.tw1.ru wn
  • You're eligible for special cash cx180165.tw1.ru qQ
  • Your Easy Cash Payout Awaits cv505813.tw1.ru Ei
  • Gain Access to Tokenized Incentives fdjhgkhjkg.temp.swtest.ru EV
  • Gain Incentives by Being Involved cx180165.tw1.ru 6F
  • Open to find a surprise cash gift cv505813.tw1.ru 1O
  • Test review and get paid cv505813.tw1.ru 9K
  • You have been chosen for a monetary reward cv505813.tw1.ru zH
  • Receive a Sign Up Bonus When You Invest cx180165.tw1.ru cg
  • Finish Programs and Receive Prizes cv505813.tw1.ru cD
  • Give us a like get a cash gift cv505813.tw1.ru mT
未经允许不得转载: LIFE & SHARE - 王颜公子 » Python3查找算法01 - 顺序查找

分享

作者

作者头像

Madman

如需 Linux / Python 相关问题付费解答,请按如下方式联系我

0 条评论

暂时还没有评论.

专题系列