import fi.uef.cs.tra.BTree; public class TRAI_25_X4_skeleton implements TRAI_25_X4 { // ^^^^^ // own userid here /** * SELF-EVALUATION HERE: * * * */ /** * Do two in-ordered binary trees contain the same elements or not? * * @param T1 in-ordered binary tree to check * @param T2 in-ordered binary tree to check * @param element type * @return true if both binary trees contain the same elements, false otherwise */ @Override public > boolean haveSameElements(BTree T1, BTree T2) { // TODO return false; } }