A Trie is a tree like data structure used for storing words in a way which facilitates fast look-ups. They prove very useful for handling dictionaries. In Part 1 we defined the trie data structure and started outlining the code for it. In this articles we are going to take a look at the basic operation we can do on a trie: Insert, Query…
Monthly Archives: March 2017

TapWar
In this tutorial you’ll learn to make a simple iOS game using the most basic components: UIView, UILabel, UITapGestureRecognizer. You can do it really quick and the result will impress all of your friends. So, let’s start! Tap War Our game involves two players: red and green. When a player taps his part of the screen it will grow a…