Amazon Interview Question for Solutions Engineers


Country: United States
Interview Type: Phone Interview




Comment hidden because of low score. Click to expand.
3
of 3 vote

public static void merge(List<Stream> inputStreams, Stream outputStream) {
  PriorityQueue<PQKeyVal> q = new PriorityQueue<PQKeyVal>();
  for (Stream s: inputStreams) {
    q.add(new PQKeyVal(s));
  }
  for (;;)
  {
    PQKeyVal top = q.poll();
    outputStream.put(top.key);
    top.stream.poll();
    q.offer(new PQKeyVal(top.stream));
  }
}

where PQKeyVal defined like that:

class PQKeyVal implements Comparable<PQKeyVal> {
  public final int key;
  public final Stream stream;
  public PQKeyVal(Stream stream) {
    this.stream = stream;
    this.key = stream.peek();
  }

  @Override
  public int compareTo(PQKeyVal that) {
    return this.key - that.key;
  }
}

- Anonymous October 06, 2019 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

Why do we need PQKeyVal datastructure? Can't we do somethong like below?


public static void merge(List<Stream> inputStreams, Stream outputStream) {
PriorityQueue<Stream> q = new PriorityQueue<Stream>();
for (Stream s: inputStreams) {
q.add(s);
}
for (;;)
{
Stream top = q.poll();
outputStream.put(top.poll());
q.offer(top);
}
}

- sagar May 18, 2020 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

We can use a priority queue where the key is the head value and the value is a pointer to the corresponding stream. We just need to repeatedly pop the min element, output the key, advance the stream to the next element and push it back to the queue using the new head value.

- adr October 06, 2019 | Flag Reply


Add a Comment
Name:

Writing Code? Surround your code with {{{ and }}} to preserve whitespace.

Books

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.

Learn More

Videos

CareerCup's interview videos give you a real-life look at technical interviews. In these unscripted videos, watch how other candidates handle tough questions and how the interviewer thinks about their performance.

Learn More

Resume Review

Most engineers make critical mistakes on their resumes -- we can fix your resume with our custom resume review service. And, we use fellow engineers as our resume reviewers, so you can be sure that we "get" what you're saying.

Learn More

Mock Interviews

Our Mock Interviews will be conducted "in character" just like a real interview, and can focus on whatever topics you want. All our interviewers have worked for Microsoft, Google or Amazon, you know you'll get a true-to-life experience.

Learn More