Subversion Repositories PlanixRsrch.SVN

Rev

Rev 339 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 339 Rev 426
Line 143... Line 143...
143
	mavl_del_all(t);
143
	mavl_del_all(t);
144
	clk = clock() - clk;
144
	clk = clock() - clk;
145
	(void)printf("DELETION TOOK: %0.2f SECONDS\n", (double)clk / (double)CLOCKS_PER_SEC);
145
	(void)printf("DELETION TOOK: %0.2f SECONDS\n", (double)clk / (double)CLOCKS_PER_SEC);
146
	(void)printf("ELEMENTS IN TREE: %d\n", t->count);
146
	(void)printf("ELEMENTS IN TREE: %d\n", t->count);
147
	(void)printf("DEPTH = %d\n", mavl_get_depth(t));
147
	(void)printf("DEPTH = %d\n", mavl_get_depth(t));
-
 
148
 
-
 
149
	mavl_destroy(t);
148
	
150
	
149
	return 0;
151
	return 0;
150
}
152
}