アルゴリズム、最も包括的な Python アルゴリズム ウェアハウス

WBOY
リリース: 2023-06-03 08:46:03
転載
1480 人が閲覧しました

プログラミングと Python を学ぶ最善の方法は練習することです。初心者であっても、コードを入力して出力し続ければ、必ず効果があります。

特に Github には Python トレーニング プロジェクトが多数ありますので、初心者も経験者もチェックすることをお勧めします。

アルゴリズム、最も包括的な Python アルゴリズム ウェアハウス

これは、Gitthub での練習に誰もが推奨するプロジェクト、アルゴリズム ウェアハウス アルゴリズムです。

https://github.com/keon/algorithms

これには、ソート、グラフ コンピューティング、バックトラッキング、キュー、ストリーム コンピューティング、ヒープ、検索、圧縮など。

アルゴリズム、最も包括的な Python アルゴリズム ウェアハウス

#このウェアハウスはサードパーティ ライブラリのインストールをサポートしており、それらを Python で呼び出すことができるため、非常に便利です。

最初に pip を使用してインストールします。

pip3 install algorithms
ログイン後にコピー

次に、sort モジュールの merge_sort マージ ソート アルゴリズムなど、呼び出す関連モジュールをインポートします。

from algorithms.sort import merge_sort

if __name__ == "__main__":
my_list = [1, 8, 3, 5, 6]
my_list = merge_sort(my_list)
print(my_list)
ログイン後にコピー

一般的なアルゴリズムのケースをいくつか挙げます。

1. 並べ替えアルゴリズム - バケット ソート

def bucket_sort(arr):
''' Bucket Sort
Complexity: O(n^2)
The complexity is dominated by nextSort
'''
# The number of buckets and make buckets
num_buckets = len(arr)
buckets = [[] for bucket in range(num_buckets)]
# Assign values into bucket_sort
for value in arr:
index = value * num_buckets // (max(arr) + 1)
buckets[index].append(value)
# Sort
sorted_list = []
for i in range(num_buckets):
sorted_list.extend(next_sort(buckets[i]))
return sorted_list

def next_sort(arr):
# We will use insertion sort here.
for i in range(1, len(arr)):
j = i - 1
key = arr[i]
while arr[j] > key and j >= 0:
arr[j+1] = arr[j]
j = j - 1
arr[j + 1] = key
return arr
ログイン後にコピー

2. 機械学習 - 最近傍補間法

import math

def distance(x,y):
"""[summary]
HELPER-FUNCTION
calculates the (eulidean) distance between vector x and y.

Arguments:
x {[tuple]} -- [vector]
y {[tuple]} -- [vector]
"""
assert len(x) == len(y), "The vector must have same length"
result = ()
sum = 0
for i in range(len(x)):
result += (x[i] -y[i],)
for component in result:
sum += component**2
return math.sqrt(sum)

def nearest_neighbor(x, tSet):
"""[summary]
Implements the nearest neighbor algorithm

Arguments:
x {[tupel]} -- [vector]
tSet {[dict]} -- [training set]

Returns:
[type] -- [result of the AND-function]
"""
assert isinstance(x, tuple) and isinstance(tSet, dict)
current_key = ()
min_d = float('inf')
for key in tSet:
d = distance(x, key)
if d < min_d:
min_d = d
current_key = key
return tSet[current_key]
ログイン後にコピー

3. 文字列デコード エンコーディング

# Implement the encode and decode methods.

def encode(strs):
"""Encodes a list of strings to a single string.
:type strs: List[str]
:rtype: str
"""
res = ''
for string in strs.split():
res += str(len(string)) + ":" + string
return res

def decode(s):
"""Decodes a single string to a list of strings.
:type s: str
:rtype: List[str]
"""
strs = []
i = 0
while i < len(s):
index = s.find(":", i)
size = int(s[i:index])
strs.append(s[index+1: index+1+size])
i = index+1+size
return strs
ログイン後にコピー

4 .ヒスタゴナル分布

def get_histogram(input_list: list) -> dict:
"""
Get histogram representation
:param input_list: list with different and unordered values
:return histogram: dict with histogram of input_list
"""
# Create dict to store histogram
histogram = {}
# For each list value, add one to the respective histogram dict position
for i in input_list:
histogram[i] = histogram.get(i, 0) + 1
return histogram
ログイン後にコピー

個人的には、このウェアハウスのアルゴリズムは非常に完成度が高く、練習に適していると感じています。友人が試してみることもできます。

以上がアルゴリズム、最も包括的な Python アルゴリズム ウェアハウスの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

関連ラベル:
ソース:51cto.com
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!