Extracted text: Below is the algorithm of Selection sort: for (index = 0; index < length="" -="" 1;="" index++)="" 1.="" find="" the="" location,="" smallestindex,="" of="" the="" smallest="" element="" in="" list[index]...list[length="" -="" 1].="" 2.="" swap="" the="" smallest="" element="" with="" list[index].="" that="" is,="" swap="" list[smallestindex]="" with="" list[index].="" }="" sort="" the="" following="" list="" using="" selection="" sort.="" show="" the="" list="" after="" the="" fifth="" iteration="" of="" the="" outer="" loop:="" 26,="" 45,="" 17,="" 65,="" 33,="" 55,="" 12,="" 18="" 12,="" 17,="" 18,="" 26,="" 33,="" 55,="" 45,="" 65="" •="" 12,="" 17,="" 18,="" 26,="" 33,="" 45,="" 65,="" 55="" •="" 26,="" 45,="" 17,="" 65,="" 33,="" 55,="" 12,="" 18="" •="" 17,="" 26,="" 45,="" 65,="" 33,="" 55,="" 12,="" 18="" •="" 12,="" 17,="" 18,="" 26,="" 33,="" 55,="" 65,="" 45="" •="" 12,="" 17,="" 18,="" 65,="" 33,="" 55,="" 26,="" 45="" •="" 17,="" 26,="" 33,="" 45,="" 65,="" 55,="" 12,="">