A question about lists in C# or Java :)

In summary: Otherwise, the code you provided is not a linked list. If the end result is a linked list, as specified in the problem, I see no problem.Otherwise, the code you provided is not a linked list.
  • #1
dan2222
6
0
Homework Statement
'lst' is a linked list that contains different integers from each other. The number of values in the list is even.
Write a method that takes a list, builds a linked list called 'sumq' in which each value includes two of the largest numbers in the list for the set we have not used so far.
It means that one number should not be used more than once. The action must return the 'sumq' list.
For example, the list: lst = {5, 8, 2, -3, 7, 10, 20, 4}
The list that the method will return is: sumq = {30, 15, 9, -1 }
No need to keep the original list.


My own explanation...
It means that the first value of the list 'sumq' is the sum of the 2 largest numbers in the list 'lst' and so on
Relevant Equations
-
I could not understand the question, I have really tried to solve it but I could not.
I will appreciate any direction to the solution. Thanks in advance:)
 
Physics news on Phys.org
  • #2
dan2222 said:
It means that the first value of the list 'sumq' is the sum of the 2 largest numbers in the list 'lst' and so on
I think you have this right. But notice it says that "one number should not be used more than once". So after taking the sum of the two largest numbers, you remove these numbers from the original list 'lst'. Then you repeat the process until 'lst' is empty.
 
  • #3
This is an odd homework question. I suppose the point is to understand linked lists? But no real world application should implement the algorithm in this way. Ideally you would just use vectors, and treat the input as a heap.
 
  • #4
It can be done with linked lists. It would work like an insert-sort in reverse.
At the core, it's asking you to sort the list and then just combine every pair of entries.
 
  • Like
Likes phyzguy
  • #5
Halc said:
It can be done with linked lists. It would work like an insert-sort in reverse.
At the core, it's asking you to sort the list and then just combine every pair of entries.
Sure, but the algorithm is necessarily O(n^2) with a list. See how it runs with a million or so inputs.
 
  • #6
valenumr said:
Sure, but the algorithm is necessarily O(n^2) with a list. See how it runs with a million or so inputs.
I don't think the homework is asking to evaluate the quality of the problem. The OP should just implement the problem as requested.
 
  • #7
phyzguy said:
I don't think the homework is asking to evaluate the quality of the problem. The OP should just implement the problem as requested.
I think dumping the list into a vector will be easier, as well as more efficient.
 
  • #8
Thank you all for the response!
 
  • #9
willem2 said:
I think dumping the list into a vector will be easier, as well as more efficient.
How would you grade a homework problem where you asked the students to use linked lists, and someone returned a program using vectors? Would you give them full credit? I would not.
 
  • Like
Likes Mark44
  • #10
Anyone might have written the full code?
 
  • #11
valenumr said:
Sure, but the algorithm is necessarily O(n^2) with a list. See how it runs with a million or so inputs.
An extract-sort is, sure, but I can think of O(n log(n)) ways to do it, still using nothing but linked lists.
As pointed out by others, I don't think finding a more complicated but scalable algorithm is the point of this exercise, but doing it with linked lists IS the point.
 
  • #12
dan2222 said:
Anyone might have written the full code?
That's not what we do here. Take a stab at writing the code yourself and we'll give you feedback, but we don't provide complete answers to posted questions.
 
  • #13
Mark44 said:
That's not what we do here. Take a stab at writing the code yourself and we'll give you feedback, but we don't provide complete answers to posted questions.
I know. I have really tried to, but I just don't know. Anyways, thank you
 
  • #14
dan2222 said:
I know. I have really tried to, but I just don't know. Anyways, thank you
Both Java and C# have linked list classes. What methods do these classes expose to programmers? That might be a good start. Have there been any similar examples shown in class?
 
  • #15
dan2222 said:
I know. I have really tried to, but I just don't know. Anyways, thank you
If you, "have really tried to," please post the code you have tried. We can give feedback and advice.
 
  • #16
public static Node<int> MaxSequenceDelete(Node<int> lst)
{
Node<int> p = lst;

Node<int> del = p.GetNext(); while (p != null)
{
if (p.GetValue() < p.GetNext().GetValue())
{
p.SetNext(del.GetNext());
del.SetNext(null);
}

p = p.GetNext();
}
return del;
}
 
  • #17
valenumr said:
Sure, but the algorithm is necessarily O(n^2) with a list. See how it runs with a million or so inputs.
Merge sort for linked lists has time complexity O(n log(n)). For Java, you'll need to implement your own linked list, as Java's native linked list provides no equivalent of C++ std::list::splice(), which is used to move nodes within a list or from one list to another.
 
  • Like
Likes valenumr
  • #18
phyzguy said:
How would you grade a homework problem where you asked the students to use linked lists, and someone returned a program using vectors? Would you give them full credit? I would not.
If the end result is a linked list, as specified in the problem, I see no problem.
 

What is a list in C# or Java?

A list in C# or Java is a data structure that allows you to store and manipulate a collection of items. It is similar to an array, but it has additional features such as the ability to dynamically resize and add or remove items.

How do you create a list in C# or Java?

In C#, you can create a list using the List class from the System.Collections.Generic namespace. In Java, you can use the ArrayList class from the java.util package. Both classes have a similar syntax for creating a list.

How do you add items to a list in C# or Java?

In C#, you can use the Add() method to add items to a list. In Java, you can use the add() method. Both methods take in the item as a parameter and add it to the end of the list.

How do you access items in a list in C# or Java?

In C#, you can use the index of the item to access it using the square bracket notation, e.g. myList[0]. In Java, you can use the get() method and pass in the index of the item you want to access, e.g. myList.get(0).

How do you remove items from a list in C# or Java?

In C#, you can use the Remove() method and pass in the item you want to remove. In Java, you can use the remove() method and pass in the index of the item you want to remove. Both methods will remove the item from the list.

Similar threads

  • Engineering and Comp Sci Homework Help
Replies
1
Views
938
  • Engineering and Comp Sci Homework Help
Replies
1
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
3
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
5
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
2
Views
3K
  • Engineering and Comp Sci Homework Help
Replies
2
Views
6K
  • Engineering and Comp Sci Homework Help
Replies
3
Views
481
  • Engineering and Comp Sci Homework Help
Replies
5
Views
2K
  • Programming and Computer Science
Replies
9
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
9
Views
1K
Back
Top