当前位置:   article > 正文

【数据结构】线性表的python实现_已知两个线性表a={1,5,6,9} 编写python程序将两个线性表合并成新的线性表 合并后

已知两个线性表a={1,5,6,9} 编写python程序将两个线性表合并成新的线性表 合并后
'''
@Project:线性表的操作:合并线性表,合并有序表
@Date:2021/6/15

'''

#合并线性表
flag = 0
if flag:
    list_1 = list(input('输入list1:').split(','))
    list_2 = list(input('输入list2:').split(','))

    list_3 = list_1.copy()
    for i in range(len(list_2)):
        if list_2[i] in list_3:
            pass
        else:
            list_3.append(list_2[i])
    print(list_3)

#合并有序表
list1 = list(input('输入list1:').split(','))
list2 = list(input('输入list2:').split(','))
list3 = []
while list1 and list2:
    if list1[0] < list2[0]:
        list3.append(list1[0])
        list1.remove(list1[0])
    elif list1[0] == list2[0]:
        list3.append(list1[0])
        list1.remove(list1[0])
        list2.remove(list2[0])
    else:
        list3.append(list2[0])
        list2.remove(list2[0])

#将剩余的元素添加到list3中
for j in list1:
    list3.append(j)
for i in list2 :
    list3.append(i)
print(list3)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/549698
推荐阅读
相关标签
  

闽ICP备14008679号