subject

You will reimplement the Quicksort given in textbook and lecture slides. The given example, the first (left-most) element of the given list is selected as the pivot. In this question, you will choose the last (right-most) element of the list as the pivot. In order to do so, you can implement a get last(L, E) and remove_last(L, Ls), as described below.[20 points] 2.1 Write a Prolog rule: get last(L, E), which return the last element of list L to E. Test case: ?- get last([a, b, c, x, y], E) It returns E
2.2 Write a Prolog rule: remove last(L, Ls), which return the sub-list without the last element [10] to Ls Test case: ?- remove last([a, b, c, x, y], Ls) It returns Ls [a, b, c, x]
2.3 Rewrite quicksort rule qsort(L, Sorted), which will return the sorted list to Sorted. You must use the get_last and remove last in your qsort rule, so that the qsort rule takes the last (right-most) element of the list L as the pivot. Test case: 1?- qsort([8, 3, 4, 12, 25, 4, 6,1, 9, 22, 6], Sorted). It returns: Sorted [1,3,4,4,6,6,8,9,12,22,25]

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 15:30
Which of the following examples has four beats in each measure?
Answers: 2
question
Computers and Technology, 22.06.2019 16:30
Technician a says that a dry sump system uses no oil storage sump under the engine. technician b says that a wet sump system uses no oil storage sump under the engine. who is correct?
Answers: 3
question
Computers and Technology, 23.06.2019 15:00
Barbara is interested in pursuing a career in the science and math pathway. which qualifications will her reach that goal? a.an advanced knowledge of physics and math b.an advanced knowledge of engineering and math c. an advanced knowledge of physics and robotics an d. advanced knowledge of machinery and math
Answers: 1
question
Computers and Technology, 23.06.2019 22:20
What is a programming method that provides for interactive modules to a website?
Answers: 1
You know the right answer?
You will reimplement the Quicksort given in textbook and lecture slides. The given example, the firs...
Questions
question
History, 11.03.2021 05:20
question
Mathematics, 11.03.2021 05:20
question
Mathematics, 11.03.2021 05:20
question
Mathematics, 11.03.2021 05:20
question
Mathematics, 11.03.2021 05:20
question
Mathematics, 11.03.2021 05:20
Questions on the website: 13722361