vote up 8 vote down star
1

Hi all,

I am creating a Library Management System.

I have used the timestamp to calculate the Date Difference and with the help of date difference I am calculating the Fine also.

Now this date difference includes all days in a week. But for a library application fine should be charged only for 6 days(Mon - Sat) in Week.

I am not able to do this.

Can anyone help me out in performing this task?

Thanks in advance!!

flag

44% accept rate

7 Answers

vote up 14 vote down

Essentially, you can calculate the raw number of days; you need to find the number of Sundays to be subtracted from that number. You know that every 7 days is a Sunday, so you can divide your raw number of days by 7, and subtract that number from your raw number of days. Now you need to remove the number of Sundays in the remainder of the week that exists; a mod of the raw number of days will tell you the remainder days. To find out if that span includes a Sunday, you must know the day of the week of the first day; if you define Monday to be 0, Tuesday to be 1, Wednesday to be 3, etc., then if you add the value of the day of the week of the beginning of the span to the mod (7) of the raw number of days, if the number is 6 or greater, you have spanned an additional Sunday, and should remove 1 day from your fine number.

In pseudocode:

int fine;
int numdays =  endDay - startDay;

fine = numdays - (numdays / 7);

int dayOfWeek = startDate.DayOfWeek;
if (dayOfWeek + (numdays % 7) > 6)
{
   fine = fine - 1;
}
link|flag
Thanks for your reply. Excellent explanation Can you represent the explanation programatically by means of coding? – sheetal Jul 7 at 17:23
Added pseudocode. – McWafflestix Jul 7 at 17:24
vote up 8 vote down

This will do it:

private int DaysLate(DateTime dueDate, DateTime returnDate)
{
    var ts = returnDate - dueDate;
    int dayCount = 0;

    for (int i = 1; i <= ts.Days; i++)
    {
        if (dueDate.AddDays(i).DayOfWeek != DayOfWeek.Sunday)
            dayCount++;
    }

    return dayCount;
}
link|flag
Taking advantage of the TimeSpan / Date classes is definitely the way to go IMO. – Chris Marisic Jul 7 at 18:16
2  
Best answer so far. But: in general, it's a "smell" to use "DateTime.Now". For example, how do you unit test this? It might be that the result from the unit test is different on a Monday from a Tuesday. Better, then, to add a parameter e.g. "DateTime returnedDate" and subtract dueDate from this. Secondly, be very wary of DateTime.Now. It computes the current date and time, taking account of timezones. Strange things might happen twice a year around the time that daylight savings changes. – JeremyMcGee Jul 7 at 18:29
@Jeremy: Good points. I modified the function per your suggestion. – raven Jul 7 at 19:13
7  
This solution is O(n). The O(1) solution is preferable. – Jeremy Stein Jul 7 at 19:16
@Jeremy Stein - definitely agreed. While the assumption may be that the number of days to iterate on is small, if this is being done in a batch over hundreds or thousands of users the performance hit could be significant. – Malcolm Jul 7 at 21:15
vote up 2 vote down

Based on Jacob Proffitt answer but without the overhead of in-memory List. Since the DaysBetween yields its dates dynamically, the count is calculated as the list is generated:

int c = DaysBetween(begin, end).Count(d => d.DayOfWeek != DayOfWeek.Sunday);

private IEnumerable<DateTime> DaysBetween(DateTime begin, DateTime end)
{
    for(var d = begin; d <= end; d.AddDays(1)) yield return d;
}

Of course if you didn't want to showoff LINQ you could simplify it and go with one function:

private int DaysBetween(DateTime begin, DateTime end)
{
    int count = 0;
    for(var d = begin; d <= end; d.AddDays(1)) 
       if(d.DayOfWeek != DayOfWeek.Sunday) count++
    return count;
}

IMHO both of these are cleaner and easier to understand, debug, troubleshoot, and modify than the everybody's favorite (raven's answer).

Of course, this is an O(n) solution, meaning the more the days are apart, the longer it takes to calculate. While this may be Ok for most of real world applications, in some cases you may prefer a formula-based approach, something along these lines:

int q = end.Subtract(begin).Days - (end.Subtract(begin).Days / 7);
link|flag
vote up 1 vote down

Tested this quickly and seems to work for your purposes:(edit: added some comments for clarity and corrected code error)

private static int CalculateDaysToFine(DateTime dateDue, DateTime dateIn)
        {
            TimeSpan ts = dateIn - dateDue;
            int daysToFine = ts.Days - (ts.Days/7); //subtract full weeks (1 Sunday each)
            if (((int)dateDue.DayOfWeek + (ts.Days%7)) >6) //check to see if the remaining days contain a Sunday
                daysToFine--;
            return daysToFine;
        }
link|flag
1  
If my answer is going to be down voted, can someone at least give a reason? Would like to know why this won't work. – Chuck Jul 7 at 21:02
vote up 0 vote down

Here is my implementation. My goal was O(1) execution time using a similar approach to McWafflestix. I tried to keep it readable, maximizing OO code and minimizing "math magic" as much as possible (not that I have anything against math... or magic for that matter).

The idea is to determine the number of complete 7-day weeks between the due date and returned date, and a "delta" number of days to adjust it by to correct the number. As long as you can guarantee that neither the due date nor the returned date fall on a Sunday (which I presume from your description will not be a problem) this will work as expected.

        static int CalculateFineDays(DateTime due, DateTime returned)
        {
            TimeSpan ts = returned - due;
            if (ts < TimeSpan.Zero)
                return 0;
int delta = returned.DayOfWeek - due.DayOfWeek; return delta + ts.Subtract(TimeSpan.FromDays(delta)).Days * 6 / 7; }

Edit: I had posed a solution earlier and found a bug in it, and as I was working on it I reduced the code down to this.

link|flag
vote up 0 vote down

I have tried the follwing coding but I am not getting

private void button1_Click(object sender, EventArgs e)
{
    DateTime a = dateTimePicker1.Value;
    //int a1 = Convert.ToInt32(a);
    DateTime b = dateTimePicker2.Value;
    //int b1 = Convert.ToInt32(b);
    //int j = 0;
    //string d = Convert.ToString(a.DayOfWeek);
    //MessageBox.Show(d);
    var t = a - b;
    int daysCount = 0;
    for (int i = 1; i <= t.Days; i++)
    {
        if (a.AddDays(i).DayOfWeek != DayOfWeek.Sunday)
        {
            daysCount += 1;
        }
    }
    MessageBox.Show(Convert.ToString(daysCount));
}

When executed for everything the answer shown in the messagebox is 0.

What should I do?

link|flag
I've corrected your code. Also the value in DatePicker1 has to be greater than DatePicker2. Finally, please note that this site is not meant to be a discussion site. In the future, if you would like to discuss a question you have posted here, you can do so on the meta site: meta.stackoverflow.com – raven Jul 8 at 12:04
vote up -2 vote down

My Linqy approach (has the virtue of being easier to read but takes a minor performance hit of creating a List of structure types):

private int DaysLate(DateTime dateDue, DateTime dateReturned)
{
    return getDayList(dateDue, dateReturned).Where(d => d.DayOfWeek != DayOfWeek.Sunday).Count();
}

private List<DateTime> getDayList(DateTime begin, DateTime end)
{
    List<DateTime> dates = new List<DateTime>();
    DateTime counter = begin;
    while (counter <= end)
    {
        dates.Add(counter);
        counter = counter.AddDays(1);
    }
    return dates;
}
link|flag
1  
This is the least performant example of all the answers. It is O(N2) where a simple math operation would suffice. – Rex M Jul 7 at 22:45
Yeah, I like zvolkov's answer better. I'm not terribly impressed by the down-voting, though. Punk kids. – Jacob Proffitt Jul 8 at 6:55

Your Answer

Get an OpenID
or

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