Kth Largest Element in the Stream : by A.B We're back at it again this week and focusing on a problem involving the heap data structure. For those unfamiliar, a Heap is a tree-based data structure that is a complete binary tree in that for a given node B, if A is the "parent" node of B, the value of A is greater/equal to the value in B. So our problem description and an example to help understand it is provided below. I do have some experience with binary trees but this solution required way more work than I expected. The challenging part was not being familiar with methods unique to heap structures. It took a big of googling/studying to understand what I actually had to do in order to get my code to perform the way I had it lined up in my mind. In any case, I did what I sought to do and got a submission to pass all test cases. Admittedly, I'm ignorant to if I can optimize this better, I'll be looking into other solutions to se...