C++ Please explain the code below. It doesn't have to be long, as long as you explain what the important parts of your code do. You can also explain it line by line for best ratings. Thank you so much!  #include #include "linkedlist.h" void bubbleSort(List*); void selectionSort(List*); void insertionSort(List*); int main(void) {     char li;     cin >> li;          List* list;     if (li == 'A') {       list = new ArrayList();     } else {       list = new LinkedList();     }          int length;     cin >> length;          int input;     for (int i = 0; i < length; i++) {       cin >> input;       list->add(input);     }     list->print();     char sym;     cin >> sym;            switch (sym) {       case 'B':         bubbleSort(list);         break;       case 'I':         insertionSort(list);         break;       case 'S':         selectionSort(list);         break;     }     return 0; }; //Perform two of three sorting algorithms here. //Reminder: Do not use methods specific to Array or Linked List. void bubbleSort(List* list) {   int size = list->size();   int check = 1;   while(check){     check = 0;     for(int i =0; iget(i) > list->get(i+1)){         list->swap(i, i+1);         list->print();         check = 1;       }     }   } }; void selectionSort(List* list) {   int size = list->size();   for(int i = 1; i <= size; i++) {     int smallest = list -> get(i);     int count = 0;       for (int j = i+1; j <= size;j++ ) {         if(smallest > list->get(j)) {           smallest = list->get(j);           count = j;         }       }       if (count != 0) {         list->swap(i,count);         list->print();     }   } }; void insertionSort(List* list) {   int size = list->size();   for(int curr = 2; curr <= size; curr++){      int key = list->get(curr);     int compare = curr-1;                    while(key < list->get(compare) && compare > 0){         list -> swap(compare, curr);            list -> print();         compare--;                 curr--;              }   } };

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
100%

C++ Please explain the code below.

It doesn't have to be long, as long as you explain what the important parts of your code do. You can also explain it line by line for best ratings. Thank you so much! 

#include <iostream>
#include "linkedlist.h"

void bubbleSort(List*);
void selectionSort(List*);
void insertionSort(List*);

int main(void) {
    char li;
    cin >> li;
    
    List* list;
    if (li == 'A') {
      list = new ArrayList();
    } else {
      list = new LinkedList();
    }
    
    int length;
    cin >> length;
    
    int input;
    for (int i = 0; i < length; i++) {
      cin >> input;
      list->add(input);
    }
    list->print();
    char sym;
    cin >> sym;
      
    switch (sym) {
      case 'B':
        bubbleSort(list);
        break;
      case 'I':
        insertionSort(list);
        break;
      case 'S':
        selectionSort(list);
        break;
    }
    return 0;
};


//Perform two of three sorting algorithms here.
//Reminder: Do not use methods specific to Array or Linked List.
void bubbleSort(List* list) {
  int size = list->size();
  int check = 1;
  while(check){
    check = 0;
    for(int i =0; i<size; i++){
      if (list->get(i) > list->get(i+1)){
        list->swap(i, i+1);
        list->print();
        check = 1;
      }
    }
  }
};

void selectionSort(List* list) {
  int size = list->size();
  for(int i = 1; i <= size; i++) {
    int smallest = list -> get(i);
    int count = 0;
      for (int j = i+1; j <= size;j++ ) {
        if(smallest > list->get(j)) {
          smallest = list->get(j);
          count = j;
        }
      }
      if (count != 0) {
        list->swap(i,count);
        list->print();
    }
  }
};

void insertionSort(List* list) {
  int size = list->size();
  for(int curr = 2; curr <= size; curr++){ 
    int key = list->get(curr);
    int compare = curr-1;          
    
    while(key < list->get(compare) && compare > 0){
        list -> swap(compare, curr);   
        list -> print();
        compare--;        
        curr--;         
    }
  }
};

Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Linked List Representation
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education