|
|
|
|
|
by mvc
413 days ago
|
|
You might not implement them but as a web engineer you're using them all the time. So all these tools that you use will have tree implementations in them. - Every html document is a tree structure. And css documents have special syntax to address nodes within those trees - If it's any good, you're routing framework probably uses some kind of tree to quickly match the request to it's handler - The database you write to uses a tree to quickly find the location it needs to write to |
|