Question: need to create a simples sort method for sorting even odd numbers. It is a problem from the book Data structures and Algorithms in Java
need to create a simples sort method for sorting even odd numbers. It is a problem from the book Data structures and Algorithms in Java by Robert Lafore. The answers to this book are on this site but this answer waas not complete, looks like they forgot the odd-even method. If you could create the odd even method I would appreciate it
In Java please.
Thanks!



Problem Writing programs that solve the Programming Projects helps to solidify your understanding of the material and demonstrates how the chapter's concepts are applied. (As noted in the Introduction, qualified instructors may obtain completed solutions to the Programming Projects on the publisher's Web site.) Another simple sort is the odd-even sort. The idea is to repeatedly make two passes through the array. On the first pass you look at all the pairs of items, auil and a+1], where j is odd j 1, 3, 5 ...). If their key values are out of order, you swap them. On the second pass you do the same for all the even values (j = 2, 4, 6, ). You do these two passes repeatedly until the array is sorted Replace the bubbleSort) method in bubbleSort.java (Listing 3.1) with an oddEvenSort) method Make sure it works for varying amounts of data. You'll need to figure out how many times to do the two passes The odd-even sort is actually useful in a multiprocessing environment, where a separate processor can operate on each odd pair simultaneously and then on each even pair. Because the odd pairs are independent of each other, each pair can be checked-and swapped, if necessary-by a different processor. This makes for a very fast sort. Step-by-step solution
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
