Recent content by dan2222
-
D
A question about lists in C# or Java :)
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()) {...- dan2222
- Post #16
- Forum: Engineering and Comp Sci Homework Help
-
D
A question about lists in C# or Java :)
I know. I have really tried to, but I just don't know. Anyways, thank you- dan2222
- Post #13
- Forum: Engineering and Comp Sci Homework Help
-
D
Computer Science Help C# or Java
I succeded to do the first method, but I could not do the second one. The first method: public static Node<int> Delete(Node<int> lst, int num) { Node<int> p = lst.GetNext(); for (int i = 1; i < num; i++) { p = p.GetNext()...- dan2222
- Thread
- Computer Computer science Java Science
- Replies: 1
- Forum: Introductory Physics Homework Help
-
D
A question about lists in C# or Java :)
Anyone might have written the full code?- dan2222
- Post #10
- Forum: Engineering and Comp Sci Homework Help
-
D
A question about lists in C# or Java :)
Thank you all for the response!- dan2222
- Post #8
- Forum: Engineering and Comp Sci Homework Help
-
D
A question about lists in C# or Java :)
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:)- dan2222
- Thread
- Computer science Java
- Replies: 17
- Forum: Engineering and Comp Sci Homework Help