Create B tree of order 5 for 10,20,50,60,40,80,100,70,130,90,30,120,140,25,35,160,180.
Home/Computer Science/Data Structure/Page 7
SIKSHAPATH Latest Questions
practice503
Asked: February 23, 2022In: Data Structure
What are the various applications of a stack data structure?
practice503
Asked: February 23, 2022In: Data Structure
What is a Stack data structure? List the operations that can be performed on a stack.
Kumar
Asked: February 22, 2022In: Data Structure
QUESTION 1. What are the various applications of a stack data structure? QUESTION 2. When do you get error message “Queue overflow” and “Queue underflow”? Explain with example.
Pavanagg
Asked: February 21, 2022In: Data Structure
What is the value of triples after the following assignment? triples = [ (x,y,z) for x in range(2,4) for y in range(2,5) for z in range(5,7) if 2*x*y > 3*z ]
Pavanagg
Asked: February 21, 2022In: Data Structure
Consider the following Python function. def mystery(l,v): if len(l) == 0: return (v) else: return (mystery(l[:-1],l[-1]+v)) What does mystery([22,14,19,65,82,55],1) return?