Activity Selection Problem
Activity selection problem is an example of greedy algorithm.Greedy algorithms look for simple, easy-to-implement solutions to complex, multi-step problems by d...
Activity selection problem is an example of greedy algorithm.Greedy algorithms look for simple, easy-to-implement solutions to complex, multi-step problems by d...
Now that we are familiar with what Shared Preferences are and how they work, its time to actually look into one of the main applications of the Shared Preferenc...
When you are into creating complex Android Applications, you will want the user to be able to customize the settings of your application according to his needs....
Given a network of cities and the distances between them,the task is to find the shortest path from a city(source) to all other cities connected to it.The netwo...
Often, in your Android application, you will want to incorporate photos that the user takes from his camera. Just like audio and video, it is possible and rathe...
Let G=(V,E) be an undirected,connected and weighted graph.A sub-graph T=(V,E’) of G is a spanning tree of G if T is a tree.There may be several spanning t...
In the last post, I showed you how to integrate audios to your Android Application. Just like audios, we can also have our applications play videos if we want t...
Dynamic programming is a method for solving complex problems by breaking them down into simpler sub-problems. It is applicable to problems exhibiting the proper...
We can have audios in our Android application. It can be used as and when required and is decided by the Application Developer. Adding and configuring audios to...
A magic square is an arrangement of numbers in a square grid, where the numbers in each row, and in each column, and the numbers in the forward and backward mai...