Android Drag View example with source code
Structural Design Pattern
Write code to partition a linked list around a value x, such that all nodes less than x come before
Delete a node in the middle of a singly linked list,given only access to that node.
Write an algorithm to find the k'th to last element of a singly linked list.
Linked List Programming Question and its Best Solution by Abhinaw
Tutorial on Prototype Design Pattern
Tutorial on Singleton Design Pattern
Amazon Interview Question: Assume you have a method isSubstring which checks if one word is a substr
Very Common Problem on Matrix,if an element in an MXN matrix is 0,its entire row and column are set
Write a method to rotate the image by 90 degree.(In place operation is required).
Write a method to perform basic string compression eg. aabcccccaaa.Should become the ouput a2b1c5a3.
Write a method to replace all spaces with %20 in a String.(Note-Perform in place operation only.)
How will you check,given two strings are permutation of the other.
Programming Questions on String and its Best Solution with its complexity
Builder Design Pattern
Abstract Factory Design Pattern
Creational Design Patterns
Lets talk about Software Design-Patterns
Which Design Pattern should be used instead of using Traditional Constructor and why?