// Prevzato z: // http://www.cs.plu.edu/pub/faculty/csce270/summer00/labs/lab6/BinarySearchTree.java class TiskStromu { Polozka vrchol; public TiskStromu (Strom strom) { this.vrchol = strom.vrchol; } protected String tiskniStrom(Polozka p, int vnoreni) { String s = new String(); if ( p != null) { s = this.tiskniStrom(p.vpravo, vnoreni+1); for (int j=0; j