Points Study the two methods below both will do the same work. If you use your algorithm analysis skills to analize these two algorithms. Will you use the first method or the second method? Motivate your answer

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
220  CMPG 221 1-1 2021 Time Remaining: 00:04:31 ▲Hide Time Remaining▲ I_Know 6: SU4 All Part 5 of 5 - Run Time Question 5 of 53 Points Study the two methods below both will do the same work. If you use your algorithm analysis skills to analize these two algorithms. Will you use the first method or the second method? Motivate your answer.  public MyLinkedList split() {     int nodec=0 ;     int index=0;     Node ptr=head;          MyLinkedList newlist = new MyLinkedList<>();     if((ptr==null)||(ptr==tail))      return this;          for(;ptr!=null;ptr=ptr.next)      {         nodec++;      }           ptr = head;     if(nodec%2==0)       index = nodec/2;     else       index = nodec/2+1;     int i =0;       for(;ptr!=null;ptr=ptr.next)      {         if(i>=index)       {        newlist.append(ptr.element);           this.delete(ptr.element);       }        i++;     }        return newlist;   }   public MyLinkedList split() {     int nodec=0 ;     int index=0;     Node ptr=head;          MyLinkedList newlist = new MyLinkedList<>();     if((ptr==null)||(ptr==tail))      return this;        for(;ptr!=null;ptr=ptr.next)      {         nodec++;      }          ptr = head;     if(nodec%2==0)       index = nodec/2;     else       index = nodec/2+1;     for(int i = 1;i
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
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