1360. Number of Days Between Two Dates (E)

Number of Days Between Two Dates (E)

Write a program to count the number of days between two dates.

The two dates are given as strings, their format is YYYY-MM-DD as shown in the examples.

Example 1:

Input: date1 = "2019-06-29", date2 = "2019-06-30"
Output: 1

Example 2:

Input: date1 = "2020-01-15", date2 = "2019-12-31"
Output: 15 

Constraints:

  • The given dates are valid dates between the years 1971 and 2100.

题意

计算两个日期之间的天数。

思路

几种方法:

  1. 直接调用java API;
  2. 累加较小日期的天数,直到两日期相等;
  3. 将每个日期都转化为到1970-01-00的天数,最后相减(实际上就是自己实现了java API)

代码实现 - API

import java.time.LocalDate;

class Solution {
    public int daysBetweenDates(String date1, String date2) {
        return (int) Math.abs(LocalDate.parse(date1).toEpochDay() - LocalDate.parse(date2).toEpochDay());
    }
}

代码实现 - 累加

class Solution {
    public int daysBetweenDates(String date1, String date2) {
        if (date1.compareTo(date2) > 0) {
            String temp  = date1;
            date1 = date2;
            date2 = temp;
        }
        
        String[] s1 = date1.split("-"), s2 = date2.split("-");
        int y1 = Integer.parseInt(s1[0]), y2 = Integer.parseInt(s2[0]);
        int m1 = Integer.parseInt(s1[1]), m2 = Integer.parseInt(s2[1]);
        int d1 = Integer.parseInt(s1[2]), d2 = Integer.parseInt(s2[2]);
        int[] days = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
        int count = 0;

        days[2] = isLeapYear(y1) ? 29 : 28;

        while (y1 != y2 || m1 != m2 || d1 != d2) {
            count++;
            d1++;
            if (d1 == days[m1] + 1) {
                d1 = 1;
                m1++;
            }
            if (m1 == 13) {
                m1 = 1;
                y1++;
                days[2] = isLeapYear(y1) ? 29 : 28;
            }
        }

        return count;
    }

    private boolean isLeapYear(int year) {
        return year % 100 != 0 && year % 4 == 0 || year % 400 == 0;
    }
}

代码实现 - 总天数相减

class Solution {
    public int daysBetweenDates(String date1, String date2) {
        return Math.abs(toDays(date1) - toDays(date2));
    }

    private int toDays(String date) {
        int count = 0;
        String[] s = date.split("-");
        int y = Integer.parseInt(s[0]), m = Integer.parseInt(s[1]), d = Integer.parseInt(s[2]);
        int[] days = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
        days[2] += isLeapYear(y) ? 1 : 0;

        for (int i = 1970; i < y; i++) {
            count += isLeapYear(i) ? 366 : 365;
        }
        count += d;
        for (int i = 1; i < m; i++) {
            count += days[i];
        }

        return count;
    }

    private boolean isLeapYear(int year) {
        return year % 4 == 0 && year % 100 != 0 || year % 400 == 0;
    }
}
Write a C++ program that defines a class DateV2 that (1) Contains all the members in the class DateV1; Programming for Engineers C++ (2) Has two constructors as follows: One takes three parameters, int y, int m, int n; The other is the default constructor that takes no parameter (3) Has additional public member functions as follows: string getWeekDay(); // return the week day, for example, Sunday if day is 0, etc bool Leap(); // return if the year is leap int differFrom(DateV2& oneDate); // return the difference in days between the calling object // and the oneDate object void printDate(); // print the year, the month in English, the day, and the week day Test class DateV2 in the main function as follows: (1) Declare and set the objects today and tomorrow as in Problem 2. (2) Declare and initialize (by a constructor) an object to represent your OWN birthday. (3) Use the member function printDate to print today, tomorrow, and your birthday. (4) Output the weekday of today, tomorrow, and your own birthday. (5) Output how many days has passed since your birth (the difference between your birthday and today). Hint: i) We can use another string array to store the English name for week days (Sunday, Monday, through Saturday) ii) We know that it is Monday on Year 1, Month 1, and Day 1 iii) A good idea is to first design a function to compute the number of days that has passed since Year 1, Month 1, and Day 1, and then to use this function to compute the week day for a give date and to compute the difference between two dates. You can store the number of days for each of the 12 months in an integer array, which helps in counting the days.
05-22
Write a C++ program that defines a class DateV3 with the following: (1) private member variables: int year, month, day; (2) Has three constructors and one destructor as follows: The first constructor takes three parameters, int y, int m, int n; The second is the copy constructor that takes a DateV3 object as the parameter; The third is the default constructor that takes no parameter; The destructor takes no parameter. (3) Has overloaded operators: int operator-(DateV3 & oneDate); // return difference in days between the calling object and oneDate DateV3 operator+(int inc); // return a Date object that is inc days later than the calling object DateV3 operator-(int dec); // return a Date object that is dec days earlier than the calling object DateV3 operator++(); // overload the prefix ++ operator DateV3 operator++(int); // overload the postfix ++ operator friend ostream& operator<< (ostream& outputStream, DateV3& theDate); // overload the << operator Test class DateV3 in the main function as follows: (1) Declare and initialize an object to represent today, which should be the date that you work on this assignment. (2) Declare and initialize an object to represent your OWN birthday. (3) Express John’s birthday given John is 5 days older than yours. (4) Create Tom’s birthday by using the copy constructor, assuming Tom has the same birthday as you. (5) Display how many days have passed since your birth, John’s birth, and Tom’s birth, respectively. (6) Create an DateV3 object, someday, by cloning Tom’s birthday. Increment someday by the prefix operator ++ once, and by postfix operator ++ once. (7) Display someday, today, your birthday, John’s birthday, and Tom’s birthday. (8) Declare a DateV3 object to represent 28 February 2024, display it, apply the prefix ++ operator on it, display it again, and apply the postfix ++ operator on it and display it again. Hint: i) A good idea is to first design a function to compute the number of days that has passed since Year 1, Month 1, and Day 1, and then to use this function to compute the difference between two dates. ii) You can store the number of days for each of the 12 months in an integer array, which helps in counting the days and implementing the overloaded operators.
06-11
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值