User contributions
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 17:14, 2 March 2012 (diff | hist) . . (-38) . . Main Page
- 23:22, 1 March 2012 (diff | hist) . . (+129) . . Algorithm Problems (→Sub sum NP problem)
- 23:21, 1 March 2012 (diff | hist) . . (+983) . . Algorithm Problems (→Max sub array)
- 18:24, 1 March 2012 (diff | hist) . . (+2,174) . . C++ interview (→Explicit constructor)
- 18:24, 1 March 2012 (diff | hist) . . (-2,174) . . Interview Questions(OOP) (→Object-oriented programming interview questions)
- 18:23, 1 March 2012 (diff | hist) . . (+729) . . Interview Questions (→Avoid Mysql Injection)
- 18:19, 1 March 2012 (diff | hist) . . (+37) . . Interview Questions (→Object-oriented programming)
- 18:19, 1 March 2012 (diff | hist) . . (-33) . . MediaWiki:Sidebar
- 01:58, 1 March 2012 (diff | hist) . . (+273) . . Heap & Heap Sort (→Heap & Heap Sort)
- 01:57, 1 March 2012 (diff | hist) . . (+1,339) . . N Heap & Heap Sort (Created page with "==Heap & Heap Sort== <pre> <?php //Heap sort function swap(&$a,&$b){ $a=$b+$a-($b=$a); } function insert(&$arr,$val){ $len=sizeof($arr); array_push($arr,$val); siftUp($arr,$l...")
- 01:57, 1 March 2012 (diff | hist) . . (+2) . . Interview Questions (→Algorithm Interview Problems)
- 01:56, 1 March 2012 (diff | hist) . . (+19) . . Interview Questions (→Algorithm Interview Problems)
- 06:26, 29 February 2012 (diff | hist) . . (+636) . . Algorithm Problems (→N choose K in order)
- 04:05, 29 February 2012 (diff | hist) . . (+34) . . Algorithm Problems (→Binary Tree)
- 04:02, 29 February 2012 (diff | hist) . . (+37) . . Algorithm Problems (→Random Selector)
- 04:01, 29 February 2012 (diff | hist) . . (+75) . . Algorithm Problems (→N Choose K with order)
- 01:36, 29 February 2012 (diff | hist) . . (+1) . . Algorithm Problems (→N Choose K with order)
- 01:34, 29 February 2012 (diff | hist) . . (+753) . . Algorithm Problems (→Random Selector)
- 22:20, 28 February 2012 (diff | hist) . . (+355) . . Interview Questions (→Swap 2 numbers in one line)
- 19:05, 28 February 2012 (diff | hist) . . (+2,865) . . N All about Linked List (Created page with "==Linked list== Create, to array, insertm inverse<br> <pre> <?php //Everthing about linked list //Create a List class Node{ public $next=null; public $prev=null; public $val; ...")
- 19:05, 28 February 2012 (diff | hist) . . (+12) . . Interview Questions (→Algorithm Interview Problems)
- 19:05, 28 February 2012 (diff | hist) . . (+60) . . Interview Questions (→Algorithm Interview Problems)
- 18:01, 28 February 2012 (diff | hist) . . (+1,439) . . All about Binary search tree (→Deleting node)
- 18:01, 28 February 2012 (diff | hist) . . (-1,439) . . Algorithm Problems (→Binary Tree)
- 18:00, 28 February 2012 (diff | hist) . . (+1) . . All about Binary search tree (→Tree to linked list)
- 17:54, 28 February 2012 (diff | hist) . . (+1,561) . . All about Binary search tree (→Deleting node)
- 17:24, 28 February 2012 (diff | hist) . . (+5) . . All about Binary search tree (→Tree insert)
- 17:24, 28 February 2012 (diff | hist) . . (+2) . . All about Binary search tree (→Some code of binary search tree)
- 17:24, 28 February 2012 (diff | hist) . . (+1) . . All about Binary search tree (→=Deleting node)
- 17:24, 28 February 2012 (diff | hist) . . (+79) . . All about Binary search tree (→Some code of binary search tree)
- 05:57, 28 February 2012 (diff | hist) . . (+1,359) . . N All about Binary search tree (Created page with "==Some code of binary search tree== Tree insert<br> Tree loop all<br> Tree to linked list<br> <pre><?php class bTree{ public $val=null; public $left=null; public $right=null; fu...")
- 05:56, 28 February 2012 (diff | hist) . . (+13) . . Algorithm Problems (→Binary Tree)
- 05:55, 28 February 2012 (diff | hist) . . (+21) . . Algorithm Problems (→Binary Tree)
- 18:58, 27 February 2012 (diff | hist) . . (+6) . . Algorithm Problems (→Random Selector)
- 19:50, 24 February 2012 (diff | hist) . . (+65) . . Interview Questions (→Algorithm Interview Problems)
- 18:13, 24 February 2012 (diff | hist) . . (+1,508) . . Algorithm Problems (→Interpolation search)
- 01:56, 24 February 2012 (diff | hist) . . (+64) . . Interview Questions (→Swap 2 numbers in one line)
- 00:58, 24 February 2012 (diff | hist) . . (+185) . . Interview Questions (→JavaScript)
- 23:46, 22 February 2012 (diff | hist) . . (0) . . Algorithm Problems (→interpolation search)
- 23:46, 22 February 2012 (diff | hist) . . (+759) . . Algorithm Problems (→Find duplicate numbers in array)
- 23:29, 22 February 2012 (diff | hist) . . (-2) . . Algorithm Problems (→Find duplicate numbers in array)
- 23:27, 22 February 2012 (diff | hist) . . (+2) . . Algorithm Problems (→Find duplicate numbers in array)
- 23:26, 22 February 2012 (diff | hist) . . (+347) . . Algorithm Problems (→Inverse Array)
- 19:33, 22 February 2012 (diff | hist) . . (+2) . . C++ interview
- 00:47, 22 February 2012 (diff | hist) . . (+21) . . Algorithm Problems
- 00:46, 22 February 2012 (diff | hist) . . (+3) . . Algorithm Problems (→Inverse Array)
- 00:46, 22 February 2012 (diff | hist) . . (+1,430) . . Algorithm Problems (→Binary tree insert)
- 23:53, 21 February 2012 (diff | hist) . . (+741) . . N Algorithm Problems (Created page with "==Binary search== <pre> def search_binary_tree(node, key): if node is None: return None # key not found if key < node.key: return search_binary_tree(...")
- 23:50, 21 February 2012 (diff | hist) . . (+57) . . Interview Questions (→Object-oriented programming)
- 07:08, 20 February 2012 (diff | hist) . . (+767) . . Linux Administration (→How to Install SVN on Ubuntu)
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)