Showing 0-0 of 0 results
| # | Exercise Title | Features | Description | Platform | Keywords |
|---|---|---|---|---|---|
| 1 | Selection Sort Visualization | Algorithm Visualization, Code Tracing Presentation, User Supplied Data | Algorithm Visualization for Selection Sort. Includes code visualization. User can select data for the visualization. | OpenDSA | Selection Sort |
| 2 | Selection Sort Sort Proficiency Exercise | Tracing Exercise | Selection Sort interactive proficiency exercise. Users click on values in an array to move them around as Selection Sort would. | OpenDSA | Selection Sort |
| 3 | Selection Sort: Review Questions | Question, Battery | Selection Sort battery of self-assessment questions. | OpenDSA | Selection Sort |
| 4 | Selection Sort First Pass Slideshow | Algorithm Visualization | Slideshow showing a simple visualization of the first pass for Selection Sort. | OpenDSA | Selection Sort |
| 5 | Selection Sort Second Pass Slideshow | Algorithm Visualization | Slideshow showing a simple visualization of the second pass for Selection Sort. | OpenDSA | Selection Sort |
| 6 | Selection Sort Analysis Slideshow | Algorithm Analysis Presentation | Slideshow showing an analysis of Selection Sort's cost analysis. | OpenDSA | Selection Sort, Worst Case, Average Case, Best Case |
| 7 | Selection Sort | Python CodeVisualization for demonstrating Selection Sort | JSVEE | recursion, search, search algorithms, sorting, sorting algorithms | |
| 8 | Selection sort | Ascending-order Selection sort operates by finding the minimum element of an array and moving it to the “beginning” of the... | PCEX | recursion, search algorithms, sorting, sorting algorithms | |
| 9 | Selection sort modification placing only min and max | Code Completion | Your task is to modify the selection sort algorithm so that you find the largest element and swap it to... | CodeCheck | Sorting and Searching |
| 10 | Selection sort modification, placing the largest element first | Code Completion | Your task is to modify the selection sort algorithm so that you find the largest element and swap it to... | CodeCheck | Sorting and Searching |
| 11 | Selection sort modification placing even before odd | Code Completion | Implement a modification of the SelectionSorter class that reorders the array to have even elements followed by odd ones. Follow... | CodeCheck | Sorting and Searching |
| 12 | Selection Sort2 | Python CodeVisualization for demonstrating Selection Sort2 | JSVEE | sorting algorithms | |
| 13 | Count visits in selection sort | Code Completion | In section 14.5, we approximated a count of the array visits in merge sort. Your task is to provide an... | CodeCheck | Sorting and Searching |
| 14 | Count visits in selection sort | Code Completion | In section 14.3, we approximated a count of the array visits in selection sort. Your task is to provide an... | CodeCheck | Sorting and Searching |
| 15 | Modified SelectionSort | Code Completion | Your task is to modify the selection sort algorithm so that you find the largest element and swap it to... | CodeCheck | Sorting and Searching |
| 16 | Selection sort | C CodeConstruction&CompletionBundle for demonstrating Selection sort | PCEX | ||
| 17 | Selection sort Challenge | Descending-order Selection sort operates by finding the maximum element of an array and moving it to the “beginning” of the... | PCEX | ||
| 18 | c_selection_sort | Napisati program koji traži unos niza od 10 realnih brojeva sa tastature. Niz je zatim potrebno sortirati u rastućem redoslijedu... | PCEX | ||
| 19 | Pointer Swap Optimization Slideshow | Presentation | Slideshow showing that Selection Sort can be sped up for large records with swapping to records. | OpenDSA | |
| 20 | c_strukture_i_nizovi_challenge | Napisati program u programskom jeziku C koji radi sa strukturom `Proizvod` koja sadrži naziv proizvoda i njegovu cijenu. U programu... | PCEX | ||
| 21 | c_strukture_i_nizovi | Napisati program u programskom jeziku C koji omogućava rad sa studentima koristeći strukture i nizove. Potrebno je definisati strukturu Student... | PCEX | ||
| 22 | c_strukture_i_nizovi_pokazivaci | Napisati program koji omogućava rad sa studentima koristeći strukture i nizove. Potrebno je definisati strukturu Student koja sadrži ime i... | PCEX | ||
| 23 | Replacement Selection Proficiency Exercise | Tracing Exercise | Interactive algorithm proficiency exercise for the replacement selection algorithm. User clicks on heap nodes to reproduce the behavior of replacement... | OpenDSA | File Processing, External Sorting, Replacement Selection |
| 24 | External Replacement Selection Slideshow | Algorithm Visualization | Slideshow illustrating the replacement selection algorithm, used for external sorting. | OpenDSA | File Processing, External Sorting, Replacement Selection |