Introducing Android Debug Bridge – Part II
In the part I of this post, I gave you a brief explanation of what ADB is and what is it used for. Although, ADB is a very effective tool and is used in numerou...
In the part I of this post, I gave you a brief explanation of what ADB is and what is it used for. Although, ADB is a very effective tool and is used in numerou...
Any development work invariably involves the use of terminals. There are many who find the terminal much more fascinating than the GUI. This post is mainly targ...
Given an undirected,unweighted graph and two vertices u and v,the task is to find the path between these two vertices.u can be considered as the source vertex a...
Till now, we have restricted ourselves to very simple databases and hence we declare and define the database inside the Main Activity itself. However, this is m...
Given an unweighted and undirected tree,the task is to find the length of the longest path (from one node to another) in that tree.The length of a path in this ...
One of the applications of DFS is to find the number of connected components in a graph.In graph theory, a connected component of an undirected graph is a sub-g...
In the last post I showed you how to create a database. We created a table inside it and inserted values. Although we could make sure that our database was succ...
In this post I will show you how to integrate SQLite and Java in your Android Application. If you do not have a fair idea of SQLite, I would suggest you to take...
As you start to develop complex applications containing multiple activities and providing multiple functionality, often times you would want to store structured...
Given two sequences,the task is to find the length of longest sub-sequence present in both of them. A sub-sequence is a sequence that appears in the same relati...