Trie insertion ,searching code

sir what do you mean by
trie *next[26];
please explain me

hello @mzk1994
each node of trie can have at max 26 immediate children nodes thats why we are using array of 26 size.
and becuase this array will hold pointer of all such immediate child node it datatype is trie *(ie pointer to trie).

sir does that mean as array of pointers each points to trie node? or not

yeah correct, each elements of array will point to a trie node.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.