	search( key, t )
	typekey key;
	trie t;

	{
	int depth;
	for( depth=1; t!=NULL && !IsData(t); depth++ )
		t = t->p[ charac(depth,key) ];
	if( t != NULL && key == t->k )
		found( t );
	else	notfound( key );
	}
