freeCodeCamp/guide/arabic/miscellaneous/freecodecamp-algorithm-sele.../index.md

80 lines
3.0 KiB
Markdown
Raw Normal View History

---
title: Freecodecamp Algorithm Selection Sort Guide
localeTitle: دليل اختيار خوارزمية Freecodecamp
---
تقوم خوارزمية فرز التحديد بفرز صفيف من خلال البحث المتكرر عن الحد الأدنى للعنصر (مع مراعاة الترتيب التصاعدي) من الجزء الذي لم يتم فرزه ووضعه في البداية. يحافظ الخوارزمية على اثنين من subarrays في مجموعة معينة.
1\. subarray التي تم فرزها بالفعل.
2\. ما تبقى من subarray التي لم يتم فرزها.
في كل تكرار فرز الفرز ، يتم اختيار الحد الأدنى للعنصر (اعتبارًا للترتيب التصاعدي) من المجموعة الفرعية التي لم يتم فرزها ونقلها إلى الفئة الفرعية التي تم فرزها.
## مثال
[الرسوم المتحركة من SelectionSort](http://www.sorting-algorithms.com/selection-sort)
`arr<a href='https://repl.it/CZa0' target='_blank' rel='nofollow'>] = 64 25 12 22 11
# Placing the minimum element in arr[0...4] in the beginning
11 25 12 22 64
# Placing the minimum element in arr[1...4] in the beginning
11 12 25 22 64
# Placing the minimum element in arr[2...4] in the beginning
11 12 22 25 64
# Placing the minimum element in arr[3...4] in the beginning
11 12 22 25 64
`
#### تنفيذ C ++
`void selection_sort(int array[], int n)
{
// Contains index of minimum element in unsorted subarray
int min_index;
// Move boundary of unsorted subarray
for(int i = 0; i < n-1; i++)
{
// Find the minimum element in unsorted subarray
min_index = i;
for(int j = i+1; j < n; j++)
{
// If present element is less than element at min_index
// Then change min_index to present index
if(array[j] < array[min_index])
{
min_index = j;
}
}
// Swap the element at min_index with the first element
int temp;
temp = array[min_index];
array[min_index] = array[i];
array[i] = temp;
}
}
`
: صاروخ: \[تشغيل رمز Python التنفيذ
`def selection_sort(arr):
for i in range(len(arr)):
min_x = i
for j in range(i+1,len(arr)):
if arr<a href='https://forum.freecodecamp.com/images/emoji/emoji_one/rocket.png?v=3 ":rocket:"' target='_blank' rel='nofollow'>j] < arr[min_x]:
min_x = j
arr[min_x], arr[i] = arr[i], arr[min_x]
arr = [64, 25, 12, 22, 11]
selection_sort(arr)
print(arr) # Prints [11, 12, 22, 25, 64]
`
![:rocket:](https://forum.freecodecamp.com/images/emoji/emoji_one/rocket.png?v=3 ":صاروخ:") [تشغيل الكود](https://repl.it/CXwQ)
#### [تعقيد الخوارزمية](https://www.freecodecamp.com/videos/big-o-notation-what-it-is-and-why-you-should-care)
**تعقيد الوقت:** O (n \* n) بسبب الحلقتين المتداخلتين.