I want to save integers in a data structure, but without knowing the number of integers i might get. I want the database to be of FIFO kind. What is best for this purpose?
|
|
Apart from using a database, if you just have a number of intergers you could write them to a plain file. Plain files retain order, however removing entries can be expensive. You can write/rewrite 1 million integers in about 0.1 seconds using a plain file. An efficient collecton for int primitives is TIntArrayList. Its like @JPelletier's suggestion but wraps a int[]. A million int values should take about 4 MB of memory or disk. EDIT: This shows that for 1 million numbers ArrayList is a bad choice. Mainly because remove(0) is O(n) rather than O(1)
Prints
|
|||||
|
|
Any relational DataBase you could access with JDBC: MySQL, PostgreSQL, Oracle, SQLServer, DB2, Informix, Interbase, Firebird, Ingress, you name it. If you are looking for something lightweight, you can have a look at SQLite's API for Java. |
|||||
|
|
I don't think there's really such a thing as a "FIFO database". A database normally allows you to access data in any desired order using some sort of indexing scheme. You could implement a FIFO queue in a database by attaching sequence numbers to each record and reading them in order. Any database I've ever used would be capable of that. Perhaps the simple answer is that given by Pablo: use any relational database. Pick one of the free ones like MySQL or Postgres, play with it, and learn what they do. |
|||||||
|
|
Do you really mean a Database? Because you can use an ArrayList for that:
If you really need a database, can you give us more details on what you want to do? [EDIT] I recommend you to read: Java Best Practices – Vector vs ArrayList vs HashSet Thanks! |
|||||||
|
|
Sounds like you're talking about a queue. Look at JMS and see if that's the concept you're looking for. While it may seem like a big tool for such a simple task, it will give you FIFO in a persisted (to any database you wish) functionality. |
|||
|
|