Pregunta de entrevista de Uber

Write a code to construct a tree. It should get a string and generate related tree.

Respuestas de entrevistas

Anónimo

13 de feb de 2016

I was so embarrassed, and I can not find the best answer to coding questions.

Anónimo

11 de abr de 2016

Was this question asked for the onsite interview or phone interview?

Anónimo

25 de jun de 2016

deserialize the tree from string

Anónimo

2 de mar de 2016

This is prefix tree class Trie { char ch; Trie[] links; boolean isAWord; public Trie(char ch, boolean isAWord) { this.ch = ch; this.isAWord = isAWord; } }