Skip to content

Tag: data-structures

How do I read multiple CSV files to sort data in Java?

So, my Java project has two CSV files that needs to read and print some sort the data from high to low. First CSV file has date, location, new_cases, new_deaths, total_cases, total_deaths format. Second CSV file has Country, location, continent, population_year, population format. What I’m trying to do …

Do arrays in Java store data or pointers

I was reading about data locality and want to use it to improve my game engine that I’m writing. Let’s say that I have created five objects at different times that are now all in different places in the memory not next to each other. If I add them all to an array, will that array only hold pointer…