This repository has been archived on 2021-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
PF3/hw2/Ex1/src/bintree/BinTree.java

19 lines
305 B
Java

package bintree;
public interface BinTree {
/**
* Inserts value in this tree
* @param value
*/
void insert(int value);
/**
* Returns the number of occurrences of value in this tree
* @param value
* @return the number of occurrences of value in the tree
*/
int occurs(int value);
}