Skip to content

Instantly share code, notes, and snippets.

@tolpp
Last active August 29, 2015 14:15
Show Gist options
  • Save tolpp/20c1c3ad091b11260bb4 to your computer and use it in GitHub Desktop.
Save tolpp/20c1c3ad091b11260bb4 to your computer and use it in GitHub Desktop.
[Sıralı arama algoritmasına ait pseudocode]
for i ← 0 to n-2 do
min ← i
for j ← (i + 1) to n-1 do
if A[j] < A[min]
min ← j
swap A[i] and A[min]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment