KRHS Internet Lesson

Teacher Name:Mr. Rung                          Date of Lesson: May/June

Course Name: C++                    Lesson Name: Chap 19 Vocab

Student Name

Password


Objective
To complete the workbook exercises.


Primary Focus
Match the columns below.

Site Links
Course Home Page

Additional Resources

Site Links


ascending order
Asections used in some sorting algorithms
bubble sort
Bthe process of arranging the items in a data structure in a certain order
descending order
Ca sorting algorithm that compares elements d positions away from each other
divide and conquer approach
Darranged from Z to A or largest to smallest
external sort
Ea sorting method that repeatedly breaks the unsorted list down into smaller lists until each small list is sorted
incremental approach
Fan incremental sort in which the elements are arranged in a similar manner to a hand of cards
input size
Ga sorting algorithm that uses an incremental approach. After the first pass through the list, the element with the largest key value is sorted. After each successive pass, the next largest element is put in its proper position until all elements are sorted.
insertion sort
Harranged from A to Z or smallest to largest
key field
Ian algorithm which repeatedly merges smaller sorted lists into larger ones
key value
Jan incremental sort which repeatedly compares adjacent elements of an array, starting with the first and second elements, and swapping them if they are out of order
merge sort
Kthe value in a key field
partitions
Lthe field upon which a search algorithm or the sorting of data is based
quicksort
Ma sorting algorithm characterized by loops that pass through a list, one element at a time
selection sort
Na sort that sorts data in a file, rather than in RAM
Shell sort
Othe number of elements in a list to be sorted
sorting
Pa sorting algorithm that uses a divide and conquer approach and works by repeatedly breaking the list into partitions until each partition contains a single element