Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I don't know if I described it correctly. I have several lists of dates in Java. Now I need to know when a list contains at least 4 dates that follow each other. e.g. "2010-06-27, 2010-06-28, 2010-06-29, 2010-06-30". I just need an idea where to start.... Thanks!

share|improve this question
4  
What have you tried so far? Is this your homework? – Konrad Garus Jul 30 '10 at 8:39

5 Answers

up vote 0 down vote accepted

That's is my approach ...

    public List<List> getList(List<List<Date>> lists, int num) {
    List<List> result = new ArrayList<List>();
    for (List list : lists) {
        Collections.sort(list);
        if (checkList(list, num)) {
            result.add(list);
        }

    }
    return result;
}

public boolean checkList(List<Date> list, int num) {
    int count = 0;
    for (int i = 0; i < list.size() - 1; i++) {
        Calendar calendar1 = Calendar.getInstance();

        calendar1.setTime(list.get(i));
        calendar1.set(Calendar.DAY_OF_MONTH,calendar1.get(Calendar.DAY_OF_MONTH)+1);
        calendar1.set(Calendar.HOUR_OF_DAY,0);
        calendar1.set(Calendar.MINUTE,0);
        calendar1.set(Calendar.MILLISECOND,0);

        Calendar calendar2 = Calendar.getInstance();
        calendar2.setTime(list.get(i + 1));
        calendar2.set(Calendar.HOUR_OF_DAY,0);
        calendar2.set(Calendar.MINUTE,0);
        calendar2.set(Calendar.MILLISECOND,0);

        if (calendar1.equals(calendar2)) {
            count++;
        } else {
            count = 0;
        }
        if (count >= num) {
            return true;
        }
    }
    return false;
}
share|improve this answer
getDate() is day of month, won't work across month boundary. Also, it's deprecated. – unbeli Jul 30 '10 at 9:22
Yup. i suggest use Calendar ... But I just prototype the method :P – Russell Wong Jul 30 '10 at 9:26
I think he should do his own coding :D – Russell Wong Jul 30 '10 at 9:34

Iterate over the list and compare each date with the next one until you have four matching your criteria.

share|improve this answer
Thanks. Didn't think of iterator and Date's compareTo() method. my bad =) Thx anyway! – tzippy Jul 30 '10 at 8:48
Glad to help, maybe you decide to accept one of the answers here. – thelost Jul 30 '10 at 19:49
Hold on: The numbers deep down in Date are longs representing times in milliseconds. You can do compareTo() but don't expect to see 1 as the difference between two successive days! – Carl Smotricz Jul 30 '10 at 22:24

What about this:

public static boolean checkList(List<Date> list) {
    int count = 0;
    for (int i = 0; i < list.size()-1; ++i) {
        if (list.get(i).after(list.get(i+1))) {
            count = 0;
        } else {
            ++count;
            if (count == 4) {
                return true;
            }
        }
    }
    return false;
}
share|improve this answer

Convert the date in miliseconds via date/calendar classes and then the comparation is trivial.

share|improve this answer

Now thats my approach. returns a list of Integers representing the length of each series of days in a row in that time period. Thanks Russel for your method. I tried compareto() of Date until i realized that its return value does not represent the days the two compared dates are seperated from each other.

     public List<Integer> countdaysinarow(List<Date> dates){
    int daysinarow = 0;  

    List<Integer> list = new ArrayList<Integer>();

    for (int i = 0; i < dates.size() - 1; i++) {
        Calendar cal1 = Calendar.getInstance();
        cal1.setTime(dates.get(i));
        Calendar cal2 = Calendar.getInstance();
        cal2.setTime(dates.get(i + 1));
        cal1.set(Calendar.DAY_OF_YEAR, cal1.get(Calendar.DAY_OF_YEAR) + 1);

        if(cal1.equals(cal2)){
            daysinarow++;
        }
        else if(daysinarow > 0){
                list.add(new Integer(daysinarow));
            daysinarow = 0;
        }

        if(daysinarow != 0 && (i == dates.size() - 2)){
            list.add(new Integer(daysinarow));
        }   
    }       
    return list;
 }  
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.