Search:

Type: Posts; User: ProgrammablePeter

Search: Search took 0.11 seconds.

  1. Replies
    2
    Views
    1,490

    Re: Replacing Node Value

    public Node replace(Object data, Object value) {
    Node current = head;

    while(current != null) {
    if(current.getData() == data) {
    current.setData(value);
    return current;
    }...
  2. Replies
    2
    Views
    1,490

    Replacing Node Value

    Hey Guys, Could somebody point me in the right direction to replacing a node in a linked list?

    I have no clue on where to start, thus. I have no code to supply.

    I current have, a destory...
Results 1 to 2 of 2