Note that there are some explanatory texts on larger screens.

plurals
  1. PONesting arbitrary objects in Java
    text
    copied!<p>I am having trouble solving a particular problem in Java (which I did not find by search). I do not know how to create a nested lists of objects - with a different type of object/primitive type at the end. For example:</p> <p>*<em>Note: only an example. I am actually doing this below with something other than Employee, but it serves as simple example.</em></p> <p>I have an array of an object Employee. It contains information on the Employee.</p> <pre><code>public class Employee { int age int salary int yearsWorking public Employee () { // constructor... } // Accessors } </code></pre> <p>What I need to do is organize the Employees by quantiles/percentiles. I have done so by the following:</p> <pre><code>import org.apache.commons.math.stat.descriptive.rank.Percentile; public class EmployeeSort { public void main(String args[]) { Percentile p = new Percentile(); Employee[] employeeArray = new Employee[100]; // filled employeeArray double[] ageArray = new double[100]; // filled ageArray with ages from employeeArray int q = 25; // Percentile cutoff for (int i = 1; i*q &lt; 100; i++) { // assign percentile cutoff to some array to contain the values } } } </code></pre> <p>Now, the problem I have is that I need to organize the Employees first by the percentiles of age, then percentiles of yearsWorking, and finally by percentiles of salary. My Java knowledge is inadequate right now to solve this problem, but the project I was handed was in Java. I am primarily a python guy, so this problem would have been a lot easier in that language. No such luck.</p> <p>Edit: So I notice some confusion on whether I need ordering, and some people suggesting use of Comparator. I use Comparator because percentiles requires an ordered list. The problem I am having is how to store the binning of the Employee into their appropriate percentile. To clarify, I need the Employee object binned together into their appropriate percentile by age. Then, within that bin of age, I need to bin all those Employee objects within percentiles for Employee.yearsWorking. Following that, within a given percentile bin of yearsWorking which is within a given percentile bin of Employee.age, I need to create percentile bins of Employee.salary.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload