1.sorts method python (8)quick_sort

快排序原理

https://www.cnblogs.com/yangecnu/p/Introduce-Quick-Sort.html

my stupid code:

# -*- coding: utf-8 -*-
"""
Created on Wed Jul 31 10:14:28 2019

@author: yue zhang

E-mails: yuezh2015@163.com
""" 
def Quick_sort(data,num1):
         data_num = len(data)
         num=num1
         temp = True
         while temp:
               temp = False
               for i in range(num,data_num):
                     if data_num-1-i > num and data[data_num-1-i]<data[num]:
                           data[num],data[data_num-1-i] = data[data_num-1-i],data[num]
                           num = data_num-1-i
                           temp = True
                           break
               for i in range(num):
                     if i<num and data[i]>data[num]:
                           data[num],data[i] = data[i],data[num]
                           num = i
                           temp = True
                           break               
         
            
         if num-1 > 0:  
               data[:num] = Quick_sort(data[:num],num1)   
         if num+1 <data_num:
               data[num+1:] = Quick_sort(data[num+1:],num1)     
         return data
      
                 
if __name__ == '__main__':
         data = [10,20,50,3,5,7,9,11,88,55,77,56,1,2,4,555,19, 25, 26, 29 ,38 ,50 ,80, 91 ,86, 78 ,66 ,46, 32 ,19 ,15 , 7]
         #data = [8,4, 3, 7, 6, 5, 2 ,1]
         data = Quick_sort(data,0)

      
 

answer:https://github.com/TheAlgorithms/Python/blob/master/sorts/quick_sort.py

"""
This is a pure python implementation of the quick sort algorithm
For doctests run following command:
python -m doctest -v quick_sort.py
or
python3 -m doctest -v quick_sort.py
For manual testing run:
python quick_sort.py
"""
def quick_sort(collection):
    """Pure implementation of quick sort algorithm in Python
    :param collection: some mutable ordered collection with heterogeneous
    comparable items inside
    :return: the same collection ordered by ascending
    Examples:
    >>> quick_sort([0, 5, 3, 2, 2])
    [0, 2, 2, 3, 5]
    >>> quick_sort([])
    []
    >>> quick_sort([-2, -5, -45])
    [-45, -5, -2]
    """
    length = len(collection)
    if length <= 1:
        return collection
    else:
        # Use the last element as the first pivot
        pivot = collection.pop()
        # Put elements greater than pivot in greater list
        # Put elements lesser than pivot in lesser list
        greater, lesser = [], []
        for element in collection:
            if element > pivot:
                greater.append(element)
            else:
                lesser.append(element)
        return quick_sort(lesser) + [pivot] + quick_sort(greater)


if __name__ == '__main__':
    user_input = input('Enter numbers separated by a comma:\n').strip()
    unsorted = [ int(item) for item in user_input.split(',') ]
    print( quick_sort(unsorted) )

list.pop:

https://www.programiz.com/python-programming/methods/list/pop

3 way quick sort:

原理: https://blog.csdn.net/kzq_qmi/article/details/46454865

code:https://github.com/TheAlgorithms/Python/blob/master/sorts/quick_sort.py

 

根据你提供的代码片段,我注意到你正在使用MyBatis的动态SQL中的foreach标签来更新`equ_device_tsl_property`表的数据。然而,在你的代码中,存在一些语法错误和逻辑问题。 首先,你需要修复语法错误。在foreach标签的`open`、`separator`和`close`属性值中,你使用了括号,但是缺少了对应的闭合括号。你需要在每个属性值的末尾添加一个括号。此外,你在每个CASE语句中缺少了END关键字来结束它们。 另外,你在每个CASE语句中的写法不正确。应该是`WHEN id = #{item.id}`,而不是`when id = #{item.id}`。此外,你在每个CASE语句之间使用了逗号分隔,这是不正确的。 修正后的代码应如下所示: ```xml <update id="updateEquDeviceTslProperty" parameterType="YourParameterType"> UPDATE equ_device_tsl_property SET <foreach item="item" collection="array" open="(" separator="," close=")"> name = CASE WHEN id = #{item.id} THEN #{item.name} ELSE name END, device_code = CASE WHEN id = #{item.id} THEN #{item.deviceCode} ELSE device_code END, value_type = CASE WHEN id = #{item.id} THEN #{item.valueType} ELSE value_type END, property_id = CASE WHEN id = #{item.id} THEN #{item.propertyId} ELSE property_id END, property_name = CASE WHEN id = #{item.id} THEN #{item.propertyName} ELSE property_name END, sorts_index = CASE WHEN id = #{item.id} THEN #{item.sortsIndex} ELSE sorts_index END </foreach> </update> ``` 请注意,上述代码仅为修复语法错误和逻辑问题,并没有对你的业务逻辑进行验证。你需要根据你的实际需求和数据表结构进行适当调整。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值