0 0 votes Evaluate the time complexity of following recurrence relation: T(x,c) = Θ(x) for c<=2 T(c,x) = Θ(y) for c<=2 T(x,y) = Θ(x+y) + T(x/2,y/2) otherwise Algorithms algorithms + – Prateek kumar 670 views answer comment Share Follow Print See all 3 Comments 3 3 Comments reply Satbir commented Dec 9, 2018 reply Follow flag what values can x and y have ? 0 0 replyShare Prateek kumar commented Dec 9, 2018 reply Follow flag that's the actual question was given on internet 0 0 replyShare aambazinga commented Dec 14, 2018 reply Follow flag Ɵ(x+y) is what i got. is it correct? 0 0 replyShare Please log in or register to add a comment.