Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Celebrity problem A celebrity among a group of n people is a person who knows nobody but is known by everybody else. The task is

Celebrity problem A celebrity among a group of n people is a person who knows nobody but is known by everybody else. The task is to identify a celebrity by only asking questions to people of the form Do you know him/her? Design an algorithm to identify a celebrity or determine that the group has no such person using a linear number ((n)) of questions .

1. Write psuedo code for the problem. Below is an example of how the pseudo code should look like, its from another problem but giving you an idea of how I Would like the format to be. Will gives thumbs up!!

//Algorithm Enigma(A[0...n-1, 0...n-1]) //Input: A matrix A[0...n-1, 0...n-1] of real numbers

for i :=0 to n-2 do for j := i+1 to n-1 do

if A[i,j] != A[j,i] return false

return true

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions