view src/main/csharp/jp.ac.u-ryukyu.ie.cr/jungle/data/list/Node.cs @ 0:dec15de2c6ff

first commit
author Kazuma
date Tue, 21 Jun 2016 17:11:12 +0900
parents
children
line wrap: on
line source


public interface Node<T> {

    Node<T> getNext();

	Node<T> add(int currentNum, int num, T attribute);

	Node<T> addLast(T attribute);

	Node<T> delete(int currentNum, int num);

	Node<T> replaceNode(int currentNum, int num, T attribute);

    int length();

    T getAttribute();
}