Browse M
Alphabetical listing with fast deep pagination.
30746 items • Page 410 / 615
Modify the Eight Queens program (1 dimensional array - no goto version) so that
Modify the Eight Queens program (1 dimensional array - no goto version) so that it prints out a chessboard with some "fancy" representation of a queen in the appropriate positions…
Modify the Employee and ProductionWorker classes so they throw exceptions when t
Modify the Employee and ProductionWorker classes so they throw exceptions when the following errors occur: middot The Employee class should throw an exception named InvalidEmploye…
Modify the EvaluateExpression program as follows: a. (5 points) Evaluate two inf
Modify the EvaluateExpression program as follows: a. (5 points) Evaluate two infix expressions entered as first two command-line arguments (args[0] and args[1) i. Handle any numbe…
Modify the Example Program so that it is a doubly linked list. Prove that your p
Modify the Example Program so that it is a doubly linked list. Prove that your program works properly by implementing a print backwards function. NOTE: this is a C program – if yo…
Modify the FaceComponent class to create your own version of the alien face. You
Modify the FaceComponent class to create your own version of the alien face. Your modified code should make use of the following classes: Rectangle, Ellipse2D.Double, Line2D.Doubl…
Modify the FeetInches class discussed in this chapter so it overloads the follow
Modify the FeetInches class discussed in this chapter so it overloads the following operators: <= >= != Demonstrate the class's capabilities in a simple program. Grading: 1.…
Modify the FeetInches class discussed in this chapter so it overloads the follow
Modify the FeetInches class discussed in this chapter so it overloads the following operators: <= >= != Demonstrate the class's capabilities in a simple program. Grading: 1.…
Modify the GeometricObject class to implement the Comparable interface, and defi
Modify the GeometricObject class to implement the Comparable interface, and define a static max method in the GeometricObject class for finding the larger of two GeometricObject o…
Modify the GeometricObject class to implement the Comparable interface, and defi
Modify the GeometricObject class to implement the Comparable interface, and define a static max method in the GeometricObject class for finding the larger of two GeometricObject o…
Modify the Guess My Number Chapter Project from Chapter 3 by reusing the functio
Modify the Guess My Number Chapter Project from Chapter 3 by reusing the function ask_number() from the Tic-Tac-Toe Chapter Project from this chapter. Replace the code in Guess My…
Modify the HeapSort.cpp file to implement the required functions for a heap sort
Modify the HeapSort.cpp file to implement the required functions for a heap sort algorithm. Once the functions have been implemented, the program will sort and print list of strin…
Modify the IntegerSet class by adding methods to handle the set functions differ
Modify the IntegerSet class by adding methods to handle the set functions difference() and union(). Each should accept an IntegerSet object as its single parameter and return the …
Modify the Java code that runs Dijkstra\'s Algorithm to run Bellman Ford algorti
Modify the Java code that runs Dijkstra's Algorithm to run Bellman Ford algortihm. public class Dijkstra { public static DijkstraResult getShortestPaths(GeoGraph graph, GeoGraphNo…
Modify the Jetson script jet_hash.pl so that the values and the corresponding ke
Modify the Jetson script jet_hash.pl so that the values and the corresponding key is output in a numerically sorted order. (You can not use any "special" operators) #!/usr/bin/per…
Modify the LabeledPoint class of of Exercise P16.12 so that it implements the Co
Modify the LabeledPoint class of of Exercise P16.12 so that it implements the Comparable interface. Sort points first by their x-coordinates. If two points have the same x-coordin…
Modify the Link class from 17.10.1 to hold a value of a class God. Class God sho
Modify the Link class from 17.10.1 to hold a value of a class God. Class God should have members of type string: name, mythology, vehicle, weapon. For example God("Zeus", "Greek",…
Modify the LinkedList.h file and the linkedList file to make accessing the previ
Modify the LinkedList.h file and the linkedList file to make accessing the previous node possible. You do NOT need to implement any of the methods required to move backward throug…
Modify the LinkedList1 class presented in this chapter by adding sort() and reve
Modify the LinkedList1 class presented in this chapter by adding sort() and reverse() methods. The reverse moethod reverses the order of the elements in the list, and sort method …
Modify the LinkedList1 presented in this chapter by adding sort() and reverse()
Modify the LinkedList1 presented in this chapter by adding sort() and reverse() methods. The reverse method reverses the order of the elements in the list, and the sort method rea…
Modify the LinkedList1 presented in this chapter by adding sort() and reverse()
Modify the LinkedList1 presented in this chapter by adding sort() and reverse() methods. The reverse method reverses the order of the elements in the list, and the sort method rea…
Modify the LinkedList1 presented in this chapter by adding sort() and reverse()
Modify the LinkedList1 presented in this chapter by adding sort() and reverse() methods. The reverse method reverses the order of the elements in the list, and the sort method rea…
Modify the LinkedList1 presented in this chapter by adding sort() and reverse()
Modify the LinkedList1 presented in this chapter by adding sort() and reverse() methods. The reverse method reverses the order of the elements in the list, and the sort method rea…
Modify the LinkedList1 presented in this chapter by adding sort() and reverse()
Modify the LinkedList1 presented in this chapter by adding sort() and reverse() methods. The reverse method reverses the order of the elements in the list, and the sort method rea…
Modify the List class of Figure 21.3 below to include a method that recursively
Modify the List class of Figure 21.3 below to include a method that recursively searches a linked-list for a specified value. Ensure that the name of your method includes your las…
Modify the List class of List.java to include method search that recursively
Modify the List<E> class of List.java to include method search that recursively searches a linked-list object for a specified value. The method should return a reference to …
Modify the List class of List.java to include method search that recursively
Modify the List<E> class of List.java to include method search that recursively searches a linked-list object for a specified value. The method should return a reference to …
Modify the List class of List.java to include method search that recursively
Modify the List<E> class of List.java to include method search that recursively searches a linked-list object for a specified value. The method should return a reference to …
Modify the List class of Figure 21.3 to include a method that recursively sea
Modify the List<T> class of Figure 21.3 to include a method that recursively searches a linked-list for a specified value. The method must return a reference to the value if…
Modify the List class of Figure 21.3 to include a method that recursively sea
Modify the List<T> class of Figure 21.3 to include a method that recursively searches a linked-list for a specified value. The method must return a reference to the value if…
Modify the ListTest class so that we can insert integer data values representing
Modify the ListTest class so that we can insert integer data values representing identification numbers (Ids). The link list should not store duplicate Ids. Stop inserting Ids whe…
Modify the ListTest class so that we can insert integer data values representing
Modify the ListTest class so that we can insert integer data values representing identification numbers (Ids). The link list should not store duplicate Ids. Stop inserting Ids whe…
Modify the ListType class by adding the following methods: . Copy Constructor ad
Modify the ListType class by adding the following methods: . Copy Constructor add a copy constructor to the class that accepts a reference to another GeneralList Object. . public …
Modify the ListType class by adding the following methods: . Copy Constructor ad
Modify the ListType class by adding the following methods: . Copy Constructor add a copy constructor to the class that accepts a reference to another GeneralList Object. . public …
Modify the ListType class presented in this chapter by adding the following meth
Modify the ListType class presented in this chapter by adding the following methods: 1. Copy Constructor Add a copy constructor to the class that accepts a reference to another Ge…
Modify the Loan class definition to include a new class called Bank in its defin
Modify the Loan class definition to include a new class called Bank in its definition as described below. // This will go to Loan.h file class Loan { public: Loan( ); Loan(Bank ba…
Modify the Lockers.m script. Do the following: Start with all the locker OPEN: L
Modify the Lockers.m script. Do the following: Start with all the locker OPEN: L = ones (1, 500); (a) Close Locker # 1. (b) Run a for-loop on k from 2 to 500. (c) In that loop, do…
Modify the Lucky Seven game to present the user with a video poker hand (5 card)
Modify the Lucky Seven game to present the user with a video poker hand (5 card). While you do not have to present graphics for the 5 cards, you may wish to change the main screen…
Modify the Lucky Seven game to present the user with a video poker hand (5 card)
Modify the Lucky Seven game to present the user with a video poker hand (5 card). While you do not have to present graphics for the 5 cards, you may wish to change the main screen…
Modify the MagazineRack program presented below by adding delete and insert oper
Modify the MagazineRack program presented below by adding delete and insert operations into the MagazineList class. Have the Magazine class implement the Comparable interface, and…
Modify the Matlab Code which uses a \"while\" loop to compute pi to a fixed leve
Modify the Matlab Code which uses a "while" loop to compute pi to a fixed level of precision. a=0; % the experiment event number c=0; % sucessful event number r =1; % redius of th…
Modify the Maze class so that it prints out the path of the final solutions as i
Modify the Maze class so that it prints out the path of the final solutions as it is discovered without storing it. public class Maze { private final int TRIED = 3; private …
Modify the MessageWindow program below so that the user enters the entire messag
Modify the MessageWindow program below so that the user enters the entire message as a single string, with backslashes used to indicate which words go on each line: Enter font nam…
Modify the MyLine , MyOval and MyRectangle classes of Exercise 8.1 and Exercise
Modify the MyLine , MyOval and MyRectangle classes of Exercise 8.1 and Exercise 9.1 to create the class hierarchy in Fig. 10.17. Classes of theMyShape hierarchy should be "smart" …
Modify the MyLine , MyOval and MyRectangle classes. create MyShape class and mus
Modify the MyLine , MyOval and MyRectangle classes. create MyShape class and must be abstract . The data representing the coordinates and color of the shapes in the hierarchy shou…
Modify the MyMath class: Add a method to calculate the factorial of a number. A
Modify the MyMath class: Add a method to calculate the factorial of a number. A factorial is calculation that multiplies together all of the numbers between 1 and the specified nu…
Modify the MyMath class: Add a method to calculate the factorial of a number. A
Modify the MyMath class: Add a method to calculate the factorial of a number. A factorial is calculation that multiplies together all of the numbers between 1 and the specified nu…
Modify the MyMath class: Add a method to calculate the factorial of a number. A
Modify the MyMath class: Add a method to calculate the factorial of a number. A factorial is calculation that multiplies together all of the numbers between 1 and the specified nu…
Modify the MyMath class: Add a method to calculate the factorial of a number. A
Modify the MyMath class: Add a method to calculate the factorial of a number. A factorial is calculation that multiplies together all of the numbers between 1 and the specified nu…
Modify the MyMath class:Add a method to find the average of a list of integers.
Modify the MyMath class:Add a method to find the average of a list of integers. You will be asking for input in this method so use the Scanner class. You will not be taking any in…
Modify the MyMath class:Add a method to find the average of a list of integers.
Modify the MyMath class:Add a method to find the average of a list of integers. You will be asking for input in this method so use the Scanner class. You will not be taking any in…