Question: Write a static Java method positive Copy which has one parameter of type RefUnsorted List. The parameter contains elements of integer type. This method should

Write a static Java method positive Copy which has one parameter of type RefUnsorted List. The parameter contains elements of integer type. This method should return another object of type RefUnsorted List which contains a copy of the POSITIVE elements of the parameter. This method should not change the content of the parameter list. For example, if the parameter object contains the list 1 -> -2 -> 3 -> -4 -> 5 -> null, then the returned object should contain the list 5 -> 3 -> 1 ->null Hint: Do not use LLNode methods. (6 Points) Enter your
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
