Recent content by dan2222

  1. 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()) {...
  2. 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
  3. 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()...
  4. D

    A question about lists in C# or Java :)

    Anyone might have written the full code?
  5. D

    A question about lists in C# or Java :)

    Thank you all for the response!
  6. 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:)