gpt4 book ai didi

python - 我可以用我的数字语言对排序算法做些什么?

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:29:00 28 4
gpt4 key购买 nike

我可以为数字语言的排序算法做些什么?

khmer_number = [០, ១, ២, ៣ , ៤, ៥, ៦, ៧, ៨, ៩] # unicode utf-8 为高棉语言编号

internatonal_number = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

我有一个排序函数,使用 Naive sort,Quick sort,Bubble sort,

现在例如:

# -*- coding: utf-8 -*-
naive_sort(ls):
while ls:
e = min(ls)
ls.remove(e)
yield e

如果我有一个列表

ls = [4, 2, 5, 3, 7, 0]
naive_sort[ls]
output
[0,2,3,4,5,7]

如果我有一个列表但在我的号码(高棉语)

ls = [៤, ៤, ៦, ៥, ៧, ០]​  #= here is correspod this list ls = [4, 2, 5, 3, 7, 0]
naive_sort[ls]
output
[០,២,៣,៤,៥,៦] //<=>[0,2,3,4,5,7]

如何实现该算法,以便我也可以申请我的数字语言?

我的号码unicode(高棉语)在unicode聊天中从17E0 - 17E9开始

(http://unicode.org/charts/PDF/U1780.pdf)

谢谢

最佳答案

看起来您将数字值保存在一个字符串中。在这种情况下,我建议您考虑将这些字符串转换为数字、排序,然后再转换回字符串表示形式。

numberList = map(khmer_to_int, myList)
numberList.sort()
myList = map(int_to_khmer, numberList)

您定义了两个函数“int_to_khmer”和“khmer_to_int”。我希望我能提供更多帮助,但我不知道关于 utf-8 的高棉语言规范。

关于python - 我可以用我的数字语言对排序算法做些什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5134863/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com