Puzzle CornerSign In
HomeFeedbackBlogResourcesAbout
Starred
Add Question
All (696)
coding (266)
c++ (157)
algorithms (151)
puzzle (134)
CS Fundamentals (83)
oop (55)
arrays (45)
internet (40)
string (34)
math (31)
databases (28)
system (26)
probability (26)
networking (25)
linkedlist (24)
binarytrees (24)
tree (22)
bit manipulation (19)
sorting (11)
stack (10)
bst (9)
java (8)
xml (8)
sql (7)
next in series (7)
traversal (6)
graph (4)
debugging (4)
lateral thinking (4)
palindrome (4)
mysql (4)
prime (4)
general (4)
unix (3)
CGI (3)
duplication (3)
threading (3)
random (3)
search (3)
fibonacci (3)
encryption (3)
joins (3)
hash (3)
queue (3)
asm (3)
design patterns (2)

Random
MySQL architecture[2007-02-26 23:42:20]   
Explain MySQL architecture
linkAuthor:premTags: databasesAnswer

Basketball game[2007-02-26 23:42:20]   
You have a basket ball hoop and someone says that you can play 1 of 2 games. You get $1000 and one shot to get the hoop. Or, you get three shots and you have to make 2 of 3 shots. Which one do you choose? If p is the probability of making a particular shot, what value of p makes you switch games?
linkAuthor:premTags: puzzle | probabilityAnswer

Implement class Stack using a linked list.[2007-02-26 23:42:18]   
Implement class Stack using a linked list.
linkAuthor:premTags: algorithms | coding | linkedlist | stackAnswer

Propose a data structure[2007-10-03 11:04:38]   
Propose a data structure that supports the stack push and pop operations and a third operation find_min, which returns the smallest element in the data structure, all in O(1) worst case time.
linkAuthor:premTags: algorithms | coding | c++ | stack1 CommentAnswer

Sorting a stack[2007-10-03 10:54:51]   
Given a stack S, write a C program to sort the stack (in the ascending order). We are not allowed to make any assumptions about how the stack is implemented. The only functions to be used are: Push Pop Top IsEmpty IsFull
linkAuthor:premTags: algorithms | coding | c++ | sorting | stack5 CommentsAnswer

Machine stack growth[2007-02-26 23:42:17]   
How would you find out if a machine's stack grows up or down in memory? write code to do it.
linkAuthor:premTags: coding | stackAnswer

Queue using stacks[2007-02-26 23:42:18]   
Write and algorithm to implement a Queue using 2 Stacks and write test
cases for it
linkAuthor:premTags: algorithms | coding | stack | queue2 CommentsAnswer

What is the stack?[2007-02-26 23:42:21]   
What is the stack?
linkAuthor:premTags: coding | c++ | stack | CS FundamentalsAnswer

Stack[2007-02-26 23:42:19]   
Explain how to implement two stacks in one array in such a way that neither stack overflows unless the total number of elements in both stacks together in n. The push and pop operations should run in O(1) time.
linkAuthor:premTags: algorithms | coding | stackAnswer

Stack sorting problem[2007-02-26 23:42:18]   
Given a stack S, write a C program to sort the stack (in the ascending
order).

We are not allowed to make any assumptions about how the stack is
implemented.
The only functions to be used are:
Push
Pop
Top
IsEmpty
IsFull
linkAuthor:premTags: algorithms | coding | stackAnswer

i need answer[2009-08-04 06:08:22]   
Write a program to implement stack with POP and PUSH operations
linkAuthor:daveenyTags: stack2 CommentsAnswer

How to implement 3 stacks in a single array?[2007-05-29 04:27:28]   
How to implement 3 stacks in a single array as efficiently as possible ?
linkAuthor:premTags: stack1 CommentAnswer





Created by Premchand Jayamohan