Skip to content

We implemented typical algorithms for sorting and searching in C# to prepare for the Basic Information Technology Engineer exam.

Notifications You must be signed in to change notification settings

makaroniattack/sorting_search_algorithms_master

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 

Repository files navigation

sorting_search_algorithms_master

We implemented typical algorithms for sorting and searching in C# to prepare for the Basic Information Technology Engineer exam.

Search Algorithm

Search for the desired value from left to right

  1. Compare [i] with the value you are looking for
  2. If there is a match, the search is completed. If there is no match, increase the value of i by one.
  3. The search continues until the desired value is matched. If the desired value is not found after searching to the end, the search is terminated.

Linear Search

Binary search tree

Hash table search

Sorting Algorithm

Selection Sort

Insertion Sort

Bubble Sort

Quick Sort

Heap Sort

Merge Sort

Shell Sort

Bucket Sort

Cardinality Sort

Boko Sort

Referene

https://www.jitec.ipa.go.jp/1_13download/syllabus_fe_ver7_2.pdf

About

We implemented typical algorithms for sorting and searching in C# to prepare for the Basic Information Technology Engineer exam.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published