A question about lists in C# or Java :)

  • #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:)
 

Answers and Replies

  • #2
phyzguy
Science Advisor
5,093
2,098
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
valenumr
467
191
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
Halc
Gold Member
357
299
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.
 
  • #5
valenumr
467
191
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
phyzguy
Science Advisor
5,093
2,098
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
willem2
2,111
372
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
dan2222
6
0
Thank you all for the response!
 
  • #9
phyzguy
Science Advisor
5,093
2,098
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.
 
  • #10
dan2222
6
0
Anyone might have written the full code?
 
  • #11
Halc
Gold Member
357
299
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
36,871
8,916
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
dan2222
6
0
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
36,871
8,916
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
phyzguy
Science Advisor
5,093
2,098
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
dan2222
6
0
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
rcgldr
Homework Helper
8,806
590
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.
 
  • #18
willem2
2,111
372
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.
 

Suggested for: A question about lists in C# or Java :)

  • Last Post
Replies
5
Views
1K
  • Last Post
Replies
7
Views
863
Replies
2
Views
366
  • Last Post
Replies
2
Views
773
  • Last Post
Replies
7
Views
886
  • Last Post
Replies
12
Views
813
  • Last Post
Replies
3
Views
513
  • Last Post
Replies
12
Views
584
  • Last Post
Replies
1
Views
542
Replies
2
Views
662
Top