Giter Club home page Giter Club logo

Comments (4)

jogrundy avatar jogrundy commented on July 28, 2024 1

Hi Taha,
Thank you for your help, I think I'll use a priority queue, if I can figure out how! But thats part of the fun.
Cheers,
Jo

from exampleagent.

tdgunes avatar tdgunes commented on July 28, 2024

Hi Jo,

You can use Java's TreeMap data structure. Rather than using double as a key to this data structure, use Double. Briefly, difference between these two types (double vs Double) is Double is an Java object that wraps the primitive type double, so that a primitive type can be used within Java's data structures.

To give an example with TreeMap:

Double a = 1.0;
Double b = 2.0;
Double c = 3.0;

TreeMap<Double, String> treeMap = new TreeMap<>();

treeMap.put(c, "Three");
treeMap.put(a, "One");
treeMap.put(b, "Two");

for (Map.Entry<Double, String> entry : treeMap.entrySet()) {
    System.out.println(entry.getKey() + " " + entry.getValue());
}

This snippet outputs:

1.0 One
2.0 Two
3.0 Three

You can use Bid instead of String. Let me know if that works.

from exampleagent.

jogrundy avatar jogrundy commented on July 28, 2024

from exampleagent.

tdgunes avatar tdgunes commented on July 28, 2024

Hi Jo,

In that case, you can use PriorityQueue, but you need to use a new auxiliary class that implements Comparator interface and stores its Bid object. Another solution is to use TreeMap again, but store List<Bid> as a value instead of just Bid.

from exampleagent.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.