1507-转变日期格式

Raphael Liu Lv10

给你一个字符串 date ,它的格式为 Day Month Year ,其中:

  • Day 是集合 {"1st", "2nd", "3rd", "4th", ..., "30th", "31st"} 中的一个元素。
  • Month 是集合 {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"} 中的一个元素。
  • Year 的范围在 ​[1900, 2100] 之间。

请你将字符串转变为 YYYY-MM-DD 的格式,其中:

  • YYYY 表示 4 位的年份。
  • MM 表示 2 位的月份。
  • DD 表示 2 位的天数。

示例 1:

**输入:** date = "20th Oct 2052"
**输出:** "2052-10-20"

示例 2:

**输入:** date = "6th Jun 1933"
**输出:** "1933-06-06"

示例 3:

**输入:** date = "26th May 1960"
**输出:** "1960-05-26"

提示:

  • 给定日期保证是合法的,所以不需要处理异常输入。

方法一:模拟

思路与算法

首先,我们可以按照空格把字符串分割成三部分,分别取出日、月、年。对于他们分别做这样的事情:

  • 日:去掉结尾的两位英文字母,如果数字只有一位再补上前导零
  • 月:使用字典映射的方式把月份的英文缩写转换成对应的数字
  • 年:不用变化

最终组织成「年-月-日」的形式即可。

代码如下。

代码

[sol1-Python3]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Solution:
def reformatDate(self, date: str) -> str:
s2month = {
"Jan": "01", "Feb": "02", "Mar": "03", "Apr": "04", "May": "05", "Jun": "06",
"Jul": "07", "Aug": "08", "Sep": "09", "Oct": "10", "Nov": "11", "Dec": "12"
}

date = date.split(" ")

date[0] = date[0][: -2].zfill(2)
date[1] = s2month.get(date[1])
date.reverse()

return "-".join(date)
[sol1-Java]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Solution {
public String reformatDate(String date) {
String[] months = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
Map<String, Integer> s2month = new HashMap<String, Integer>();
for (int i = 1; i <= 12; i++) {
s2month.put(months[i - 1], i);
}
String[] array = date.split(" ");
int year = Integer.parseInt(array[2]);
int month = s2month.get(array[1]);
int day = Integer.parseInt(array[0].substring(0, array[0].length() - 2));
return String.format("%d-%02d-%02d", year, month, day);
}
}
[sol1-C++]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
class Solution {
public:
string reformatDate(string date) {
unordered_map<string, string> s2month = {
{"Jan", "01"},
{"Feb", "02"},
{"Mar", "03"},
{"Apr", "04"},
{"May", "05"},
{"Jun", "06"},
{"Jul", "07"},
{"Aug", "08"},
{"Sep", "09"},
{"Oct", "10"},
{"Nov", "11"},
{"Dec", "12"}
};

stringstream ss(date);
string year, month, day;
ss >> day >> month >> year;
month = s2month[month];
day.pop_back();
day.pop_back();
if (day.size() == 1) {
day = "0" + day;
}
return year + "-" + month + "-" + day;
}
};

复杂度分析

  • 时间复杂度:O(1)。
  • 空间复杂度:O(1)。
 Comments
On this page
1507-转变日期格式