在特定时间范围内查找时间的发生和持续时间

我用C#做了一个小型的停车应用程序。 根据车辆类型和时区有一些不同的价格。 日可以分为时区(例如早晨,白天,傍晚和夜晚)。 现在,如果客户停止停车,我想计算客户在哪个时区停车以及停车多久。

例如,早上时区从6:00开始到12:00结束,日时区从12:00开始并结束于16:00,晚上时区从16:00开始并于23:00结束,晚上时区开始于23:00至6:00结束。 客户于00:30开始停车,并在6:32停止停车。 目前我有4个变量:停车开始时间,停车结束时间和时区开始时间和时区结束时间。

第二个例子就像客户停车场24小时一样,那么停车时间就涵盖了所有时区。

计算客户在不同时区停放汽车的时间和分钟数的最简单方法是什么?

问候,恶魔

编辑:

从MSDN得到这个答案并在这里发布,以便其他人也可以从中学习。

public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            DateTime start = new DateTime(2011, 7, 25, 0, 30, 0);
            DateTime end = new DateTime(2011, 7, 26, 6, 32, 0);
            List<DateTime> listTimeZones = CalculateTotalTime(start, end);

            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < listTimeZones.Count; i++)
            {
                sb.AppendLine(String.Format("{0}. {1}: from {2} to {3}",
                                            i + 1,
                                            GetZoneInWords(listTimeZones[i].Hour),
                                            String.Format("{0:dd.MM.yyyy hh:mm}", listTimeZones[i]),
                                            (i + 1) < listTimeZones.Count
                                                ? String.Format("{0:dd.MM.yyyy hh:mm}", listTimeZones[i + 1])
                                                : "Parking ended"));
            }
            MessageBox.Show(sb.ToString());
        }

        private List<DateTime> CalculateTotalTime(DateTime start, DateTime end)
        {
            DateTime temp = start;

            int hour = start.Hour;
            int minute = start.Minute;

            int morning = 6;
            int day = 12;
            int evening = 17;
            int night = 23;

            List<DateTime> timeZones = new List<DateTime>();

            do
            {
                temp = temp.AddHours(1);
                if (temp.Hour == morning || temp.Hour == day ||
                    temp.Hour == evening || temp.Hour == night)
                {
                    timeZones.Add(temp);
                }
            } while (temp < end);

            return timeZones;
        }

        private string GetZoneInWords(int time)
        {
            string timeOfDay = "";
            if (time.Equals(6))
                timeOfDay = "Morning";
            else if (time.Equals(12))
                timeOfDay = "Day";
            else if (time.Equals(17))
                timeOfDay = "Evening";
            else if (time.Equals(23))
                timeOfDay = "Night";

            return timeOfDay + " parking";
        }
    }

遍历所有的“时区”和每个“时区”,找出与客户停车位之间的重叠。 例如,作为伪代码:

private static TimeSpan FindOverlap(ParkingTime parkingTime, TimeZone timeZone)
{
    // Handle wraparound zones like 23-6. Note that this doesn't attempt
    // to handle *parking* which starts at 11.30pm etc.
    if (timeZone.Start > timeZone.End)
    {
        return FindOverlap(parkingTime,
                     new TimeZone(timeZone.Start.Date, timeZone.End)
             + FindOverlap(parkingTime,
                     new TimeZone(timeZone.End, timeZone.Start.Date.AddDays(1));
    }

    DateTime overlapStart = Max(parkingTime.Start, timeZone.Start);
    DateTime overlapEnd = Min(parkingTime.End, timeZone.End);
    TimeSpan overlap = overlapEnd - overlapStart;

    // If the customer arrived after the end or left before the start,
    // the overlap will be negative at this point.
    return overlap < TimeSpan.Zero ? TimeSpan.Zero : overlap;
}

private static DateTime Min(DateTime x, DateTime y)
{
    return x < y ? x : y;
}

private static DateTime Max(DateTime x, DateTime y)
{
    return x > y ? x : y;
}

顺便说一句,我强烈鼓励你重新命名你的“时区”概念,因为它已经有一个众所周知的(如果不是很好理解:)的含义。

也许你应该把它ParkingInterval ? 或ParkingPriceInterval如果差异是真的在成本方面?

链接地址: http://www.djcxy.com/p/95413.html

上一篇: Find time occurence and duration in certain time range

下一篇: ruby on rails