The Q&A Community for Students

MindStudy, question and answer site designed to help students, to help each other:
To ask, to learn, to share, to grow.

Ask Questions

Get the right answers. Fast

Answer Questions

Submit answers for community.

Be Somebody's Hero

Pat yourself on the back. You deserve it.

All Questions

542 questions

1105 views

What is a priority queue ?

Priority queue is an abstract data type which is like a regular queue or stack data structure, but where additionally each element has a "priority" associated with it.

Super Admin
added 3 years ago
1494 views

Write the recursive algorithm to find x^ n.

float power(float x, int n) { if(x=0)

Super Admin
added 3 years ago
1418 views

What is a self referential structure? What is difference between Union & Structure?

A structure may have a member whose is same as that of a structure itself. Such structures are called self-referential.

Super Admin
added 3 years ago
1213 views

Write short notes on the following :

      a)   BFS

      b)   Tail recursion

Breadth-first search is a way to find all the vertices reachable from the a given source vertex, s. Like depth first search, BFS traverse a connected component of a given graph and defines a spanning tree.

Super Admin
added 3 years ago
1262 views

What is Weak entity set? Explain with suitable example.

The entity set which does not have sufficient attributes to form a primary key is called as Weak entity set.

Super Admin
added 3 years ago
1115 views

What do you mean by ‘Ternary Relationship’? Define the concept of aggregation with suitable example.

This is a relationship between three entity types. In the real world there are relationships other than those involving two things. For example, suppose that we want to capture which employees use which skills on which project.

Super Admin
added 3 years ago