LocalDateTime 字符串与时间戳的相互转换

主要介绍LocalDateTime的格式化字符串与时间戳的相互转换

常见带日期时间格式:

字段名字段值
api格式DateTimeFormatter.ISO_LOCAL_DATE_TIME
字符串patternyyyy-MM-dd’T’HH:mm:ss.SSS’
示例2022-06-15T22:06:29.483
字符串patternyyyy-MM-dd HH:mm:ss
示例2022-06-15 22:06:29

1. 使用默认格式和默认时区

package com.ysx.utils.datetime;import java.time.Instant;
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.time.format.DateTimeFormatter;/*** LocalDateTime 字符串与时间戳的相互转换** @author youngbear* @email youngbear@aliyun.com* @date 2024-07-07 11:38* @blog <a href="https://blog.csdn.net/next_second">...</a>* @github <a href="https://github.com/YoungBear">...</a>* @description*/
public class LocalDateTimeFormatterUtils {/*** 默认时间日期格式字符串* yyyy-MM-dd HH:mm:ss* eg.* 2022-06-15 22:06:29*/private static final DateTimeFormatter DEFAULT_FORMATTER = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");/*** 根据时间戳格式化为字符串* 指定格式的时间日期格式* 使用系统默认时区** @param timestamp 时间戳 毫秒 如 1655301989483L* @return 格式化后的字符串 如 2022-06-15T22:06:29.483*/public static String long2String(long timestamp) {return Instant.ofEpochMilli(timestamp).atZone(ZoneId.systemDefault()).toLocalDateTime().format(DEFAULT_FORMATTER);}/*** 根据字符串解析时间戳* 默认格式的时间日期格式* 默认时区** @param dateString 格式化后的字符串 如 2022-06-15T17:06:29.483* @return 时间戳 毫秒 如 1655301989483L*/public static long string2long(String dateString) {return LocalDateTime.parse(dateString, DEFAULT_FORMATTER).atZone(ZoneId.systemDefault()).toInstant().toEpochMilli();}}

对应单元测试

package com.ysx.utils.datetime;import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.mockito.MockedStatic;
import org.mockito.Mockito;import java.time.ZoneId;
import java.time.format.DateTimeFormatter;import static org.junit.jupiter.api.Assertions.assertEquals;/*** @author youngbear* @email youngbear@aliyun.com* @date 2024-07-07 11:55* @blog <a href="https://blog.csdn.net/next_second">...</a>* @github <a href="https://github.com/YoungBear">...</a>* @description unit test for {@link LocalDateTimeFormatterUtils}*/
public class LocalDateTimeFormatterUtilsTest {@Test@DisplayName("根据时间戳格式化为字符串 默认格式 默认时区")public void long2StringTest1() {long timestamp = 1655301989483L;ZoneId zoneIdShanghai = ZoneId.of("Asia/Shanghai");try (MockedStatic<ZoneId> mockedZonedId = Mockito.mockStatic(ZoneId.class)) {mockedZonedId.when(ZoneId::systemDefault).thenReturn(zoneIdShanghai);assertEquals("2022-06-15 22:06:29", LocalDateTimeFormatterUtils.long2String(timestamp));}}@Test@DisplayName("根据字符串解析为时间戳 默认格式 默认时区")public void string2longTest1() {ZoneId zoneIdShanghai = ZoneId.of("Asia/Shanghai");try (MockedStatic<ZoneId> mockedZonedId = Mockito.mockStatic(ZoneId.class)) {mockedZonedId.when(ZoneId::systemDefault).thenReturn(zoneIdShanghai);assertEquals(1655301989000L, LocalDateTimeFormatterUtils.string2long("2022-06-15 22:06:29"));}}}

2. 更多方法(指定格式和指定时区)

package com.ysx.utils.datetime;import java.time.Instant;
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.time.format.DateTimeFormatter;/*** LocalDateTime 字符串与时间戳的相互转换** @author youngbear* @email youngbear@aliyun.com* @date 2024-07-07 11:38* @blog <a href="https://blog.csdn.net/next_second">...</a>* @github <a href="https://github.com/YoungBear">...</a>* @description*/
public class LocalDateTimeFormatterUtils {/*** 默认时间日期格式字符串* yyyy-MM-dd HH:mm:ss* eg.* 2022-06-15 22:06:29*/private static final DateTimeFormatter DEFAULT_FORMATTER = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");/*** 根据时间戳格式化为字符串* 指定格式的时间日期格式* 使用系统默认时区** @param timestamp 时间戳 毫秒 如 1655301989483L* @return 格式化后的字符串 如 2022-06-15T22:06:29.483*/public static String long2String(long timestamp) {return Instant.ofEpochMilli(timestamp).atZone(ZoneId.systemDefault()).toLocalDateTime().format(DEFAULT_FORMATTER);}/*** 根据时间戳格式化为字符串* 指定格式的时间日期格式* 使用系统默认时区** @param timestamp 时间戳 毫秒 如 1655301989483L* @param formatter formatter 如 DateTimeFormatter.ISO_LOCAL_DATE_TIME* @return 格式化后的字符串 如 2022-06-15T17:06:29.483*/public static String long2String(long timestamp, DateTimeFormatter formatter) {return Instant.ofEpochMilli(timestamp).atZone(ZoneId.systemDefault()).toLocalDateTime().format(formatter);}/*** 根据时间戳格式化为字符串* 默认格式的时间日期格式* 指定时区** @param timestamp 时间戳 毫秒 如 1655301989483L* @param zoneId 时区信息 如 ZoneId.of("Europe/Moscow")* @return 格式化后的字符串 如 2022-06-15T17:06:29.483*/public static String long2String(long timestamp, ZoneId zoneId) {return Instant.ofEpochMilli(timestamp).atZone(zoneId).toLocalDateTime().format(DEFAULT_FORMATTER);}/*** 根据时间戳格式化为字符串* 指定格式的时间日期格式* 指定时区** @param timestamp 时间戳 毫秒 如 1655301989483L* @param formatter formatter 如 DateTimeFormatter.ISO_LOCAL_DATE_TIME* @param zoneId 时区信息 如 ZoneId.of("Europe/Moscow")* @return 格式化后的字符串 如 2022-06-15T17:06:29.483*/public static String long2String(long timestamp, DateTimeFormatter formatter, ZoneId zoneId) {return Instant.ofEpochMilli(timestamp).atZone(zoneId).toLocalDateTime().format(formatter);}/*** 根据字符串解析时间戳* 默认格式的时间日期格式* 默认时区** @param dateString 格式化后的字符串 如 2022-06-15T17:06:29.483* @return 时间戳 毫秒 如 1655301989483L*/public static long string2long(String dateString) {return LocalDateTime.parse(dateString, DEFAULT_FORMATTER).atZone(ZoneId.systemDefault()).toInstant().toEpochMilli();}/*** 根据字符串解析时间戳* 指定格式的时间日期格式* 默认时区** @param dateString 格式化后的字符串 如 2022-06-15T17:06:29.483* @param formatter formatter 如 DateTimeFormatter.ISO_LOCAL_DATE_TIME* @return 时间戳 毫秒 如 1655301989483L*/public static long string2long(String dateString, DateTimeFormatter formatter) {return LocalDateTime.parse(dateString, formatter).atZone(ZoneId.systemDefault()).toInstant().toEpochMilli();}/*** 根据字符串解析时间戳* 默认格式的时间日期格式* 指定时区** @param dateString 格式化后的字符串 如 2022-06-15T17:06:29.483* @param zoneId 时区信息 如 ZoneId.of("Europe/Moscow")* @return 时间戳 毫秒 如 1655301989483L*/public static long string2long(String dateString, ZoneId zoneId) {return LocalDateTime.parse(dateString, DEFAULT_FORMATTER).atZone(zoneId).toInstant().toEpochMilli();}/*** 根据字符串解析时间戳* 指定格式的时间日期格式* 指定时区** @param dateString 格式化后的字符串 如 2022-06-15T17:06:29.483* @param formatter formatter 如 DateTimeFormatter.ISO_LOCAL_DATE_TIME* @param zoneId 时区信息 如 ZoneId.of("Europe/Moscow")* @return 时间戳 毫秒 如 1655301989483L*/public static long string2long(String dateString, DateTimeFormatter formatter, ZoneId zoneId) {return LocalDateTime.parse(dateString, formatter).atZone(zoneId).toInstant().toEpochMilli();}}

对应单元测试

package com.ysx.utils.datetime;import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.mockito.MockedStatic;
import org.mockito.Mockito;import java.time.ZoneId;
import java.time.format.DateTimeFormatter;import static org.junit.jupiter.api.Assertions.assertEquals;/*** @author youngbear* @email youngbear@aliyun.com* @date 2024-07-07 11:55* @blog <a href="https://blog.csdn.net/next_second">...</a>* @github <a href="https://github.com/YoungBear">...</a>* @description unit test for {@link LocalDateTimeFormatterUtils}*/
public class LocalDateTimeFormatterUtilsTest {@Test@DisplayName("根据时间戳格式化为字符串 默认格式 默认时区")public void long2StringTest1() {long timestamp = 1655301989483L;ZoneId zoneIdShanghai = ZoneId.of("Asia/Shanghai");try (MockedStatic<ZoneId> mockedZonedId = Mockito.mockStatic(ZoneId.class)) {mockedZonedId.when(ZoneId::systemDefault).thenReturn(zoneIdShanghai);assertEquals("2022-06-15 22:06:29", LocalDateTimeFormatterUtils.long2String(timestamp));}}@Test@DisplayName("根据时间戳格式化为字符串 指定格式 默认时区")public void long2StringTest2() {long timestamp = 1655301989483L;DateTimeFormatter formatter1 = DateTimeFormatter.ISO_LOCAL_DATE_TIME;DateTimeFormatter formatter2 = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");ZoneId zoneIdShanghai = ZoneId.of("Asia/Shanghai");try (MockedStatic<ZoneId> mockedZonedId = Mockito.mockStatic(ZoneId.class)) {mockedZonedId.when(ZoneId::systemDefault).thenReturn(zoneIdShanghai);assertEquals("2022-06-15T22:06:29.483", LocalDateTimeFormatterUtils.long2String(timestamp, formatter1));assertEquals("2022-06-15 22:06:29", LocalDateTimeFormatterUtils.long2String(timestamp, formatter2));}}@Test@DisplayName("根据时间戳格式化为字符串 默认格式 指定时区")public void long2StringTest3() {long timestamp = 1655301989483L;ZoneId zoneIdShanghai = ZoneId.of("Asia/Shanghai");ZoneId zoneIdMoscow = ZoneId.of("Europe/Moscow");ZoneId zoneIdParis = ZoneId.of("Europe/Paris");ZoneId zoneIdLos_Angeles = ZoneId.of("America/Los_Angeles");assertEquals("2022-06-15 22:06:29", LocalDateTimeFormatterUtils.long2String(timestamp, zoneIdShanghai));assertEquals("2022-06-15 17:06:29", LocalDateTimeFormatterUtils.long2String(timestamp, zoneIdMoscow));assertEquals("2022-06-15 16:06:29", LocalDateTimeFormatterUtils.long2String(timestamp, zoneIdParis));assertEquals("2022-06-15 07:06:29", LocalDateTimeFormatterUtils.long2String(timestamp, zoneIdLos_Angeles));}@Test@DisplayName("根据时间戳格式化为字符串 指定格式 指定时区")public void long2StringTest4() {long timestamp = 1655301989483L;DateTimeFormatter formatter1 = DateTimeFormatter.ISO_LOCAL_DATE_TIME;DateTimeFormatter formatter2 = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");ZoneId zoneIdShanghai = ZoneId.of("Asia/Shanghai");ZoneId zoneIdMoscow = ZoneId.of("Europe/Moscow");ZoneId zoneIdParis = ZoneId.of("Europe/Paris");ZoneId zoneIdLos_Angeles = ZoneId.of("America/Los_Angeles");assertEquals("2022-06-15T22:06:29.483", LocalDateTimeFormatterUtils.long2String(timestamp, formatter1, zoneIdShanghai));assertEquals("2022-06-15T17:06:29.483", LocalDateTimeFormatterUtils.long2String(timestamp, formatter1, zoneIdMoscow));assertEquals("2022-06-15T16:06:29.483", LocalDateTimeFormatterUtils.long2String(timestamp, formatter1, zoneIdParis));assertEquals("2022-06-15T07:06:29.483", LocalDateTimeFormatterUtils.long2String(timestamp, formatter1, zoneIdLos_Angeles));assertEquals("2022-06-15 22:06:29", LocalDateTimeFormatterUtils.long2String(timestamp, formatter2, zoneIdShanghai));assertEquals("2022-06-15 17:06:29", LocalDateTimeFormatterUtils.long2String(timestamp, formatter2, zoneIdMoscow));assertEquals("2022-06-15 16:06:29", LocalDateTimeFormatterUtils.long2String(timestamp, formatter2, zoneIdParis));assertEquals("2022-06-15 07:06:29", LocalDateTimeFormatterUtils.long2String(timestamp, formatter2, zoneIdLos_Angeles));}@Test@DisplayName("根据字符串解析为时间戳 默认格式 默认时区")public void string2longTest1() {ZoneId zoneIdShanghai = ZoneId.of("Asia/Shanghai");try (MockedStatic<ZoneId> mockedZonedId = Mockito.mockStatic(ZoneId.class)) {mockedZonedId.when(ZoneId::systemDefault).thenReturn(zoneIdShanghai);assertEquals(1655301989000L, LocalDateTimeFormatterUtils.string2long("2022-06-15 22:06:29"));}}@Test@DisplayName("根据字符串解析为时间戳 指定格式 默认时区")public void string2longTest2() {DateTimeFormatter formatter1 = DateTimeFormatter.ISO_LOCAL_DATE_TIME;DateTimeFormatter formatter2 = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");ZoneId zoneIdShanghai = ZoneId.of("Asia/Shanghai");long timestamp1 = 1655301989483L;long timestamp2 = 1655301989000L;String dateStringShanghai1 = "2022-06-15T22:06:29.483";String dateStringShanghai2 = "2022-06-15 22:06:29";try (MockedStatic<ZoneId> mockedZonedId = Mockito.mockStatic(ZoneId.class)) {mockedZonedId.when(ZoneId::systemDefault).thenReturn(zoneIdShanghai);assertEquals(timestamp1, LocalDateTimeFormatterUtils.string2long(dateStringShanghai1, formatter1));assertEquals(timestamp2, LocalDateTimeFormatterUtils.string2long(dateStringShanghai2, formatter2));}}@Test@DisplayName("根据字符串解析为时间戳 默认格式 指定时区")public void string2longTest3() {ZoneId zoneIdShanghai = ZoneId.of("Asia/Shanghai");ZoneId zoneIdMoscow = ZoneId.of("Europe/Moscow");ZoneId zoneIdParis = ZoneId.of("Europe/Paris");ZoneId zoneIdLos_Angeles = ZoneId.of("America/Los_Angeles");String dateStringShanghai2 = "2022-06-15 22:06:29";String dateStringMoscow2 = "2022-06-15 17:06:29";String dateStringParis2 = "2022-06-15 16:06:29";String dateStringLos_Angeles2 = "2022-06-15 07:06:29";long timestamp2 = 1655301989000L;assertEquals(timestamp2, LocalDateTimeFormatterUtils.string2long(dateStringShanghai2, zoneIdShanghai));assertEquals(timestamp2, LocalDateTimeFormatterUtils.string2long(dateStringMoscow2, zoneIdMoscow));assertEquals(timestamp2, LocalDateTimeFormatterUtils.string2long(dateStringParis2, zoneIdParis));assertEquals(timestamp2, LocalDateTimeFormatterUtils.string2long(dateStringLos_Angeles2, zoneIdLos_Angeles));}@Test@DisplayName("根据字符串解析为时间戳 指定格式 指定时区")public void string2longTest4() {DateTimeFormatter formatter1 = DateTimeFormatter.ISO_LOCAL_DATE_TIME;DateTimeFormatter formatter2 = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");ZoneId zoneIdShanghai = ZoneId.of("Asia/Shanghai");ZoneId zoneIdMoscow = ZoneId.of("Europe/Moscow");ZoneId zoneIdParis = ZoneId.of("Europe/Paris");ZoneId zoneIdLos_Angeles = ZoneId.of("America/Los_Angeles");String dateStringShanghai1 = "2022-06-15T22:06:29.483";String dateStringMoscow1 = "2022-06-15T17:06:29.483";String dateStringParis1 = "2022-06-15T16:06:29.483";String dateStringLos_Angeles1 = "2022-06-15T07:06:29.483";String dateStringShanghai2 = "2022-06-15 22:06:29";String dateStringMoscow2 = "2022-06-15 17:06:29";String dateStringParis2 = "2022-06-15 16:06:29";String dateStringLos_Angeles2 = "2022-06-15 07:06:29";long timestamp1 = 1655301989483L;long timestamp2 = 1655301989000L;assertEquals(timestamp1, LocalDateTimeFormatterUtils.string2long(dateStringShanghai1, formatter1, zoneIdShanghai));assertEquals(timestamp1, LocalDateTimeFormatterUtils.string2long(dateStringMoscow1, formatter1, zoneIdMoscow));assertEquals(timestamp1, LocalDateTimeFormatterUtils.string2long(dateStringParis1, formatter1, zoneIdParis));assertEquals(timestamp1, LocalDateTimeFormatterUtils.string2long(dateStringLos_Angeles1, formatter1, zoneIdLos_Angeles));assertEquals(timestamp2, LocalDateTimeFormatterUtils.string2long(dateStringShanghai2, formatter2, zoneIdShanghai));assertEquals(timestamp2, LocalDateTimeFormatterUtils.string2long(dateStringMoscow2, formatter2, zoneIdMoscow));assertEquals(timestamp2, LocalDateTimeFormatterUtils.string2long(dateStringParis2, formatter2, zoneIdParis));assertEquals(timestamp2, LocalDateTimeFormatterUtils.string2long(dateStringLos_Angeles2, formatter2, zoneIdLos_Angeles));}
}

源码地址-github

源码地址-gitee

更多文章

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/867804.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Golang | Leetcode Golang题解之第213题打家劫舍II

题目&#xff1a; 题解&#xff1a; func _rob(nums []int) int {first, second : nums[0], max(nums[0], nums[1])for _, v : range nums[2:] {first, second second, max(firstv, second)}return second }func rob(nums []int) int {n : len(nums)if n 1 {return nums[0]}…

SSRF靶场通关合集

目录 前言 SSRF总结 1.pikachu 1.1SSRF(curl) 1.1.1http协议 1.1.2 file协议查看本地文件 1.1.3 dict协议扫描内网主机开放端口 1.2 SSRF&#xff08;file_get_content&#xff09; 1.2.1 file读取本地文件 1.2.2 php://filter/读php源代码 2.DoraBox靶场 前言 最近…

恢复出厂设置手机变成砖

上周&#xff0c;许多Google Pixel 6&#xff08;6、6a、6 Pro&#xff09;手机用户在恢复出厂设置后都面临着设备冻结的问题。 用户说他们在下载过程中遇到了丢失 tune2fs 文件的错误 。 这会导致屏幕显示以下消息&#xff1a;“Android 系统无法启动。您的数据可能会被损坏…

openGauss配置vscode编译调试环境

如何编译和安装openGauss请参考官方文档。 生成任务文件tasks.json {"version": "2.0.0","tasks": [{"type": "shell","label": "C/C: g 生成活动文件","command": "make -sj &&a…

@Bean注解

Bean 是 Spring 框架中的一个非常重要的注解&#xff0c;主要用于定义和注册 bean 到 Spring 容器中。在 Spring Boot 或更广泛的 Spring 生态系统中&#xff0c;Bean 提供了一种灵活的方式来创建和配置 bean&#xff0c;而无需 XML 配置或更复杂的 Java 配置方式。 下面是 Be…

使用Kubernetes部署Spring Boot应用的实践

使用Kubernetes部署Spring Boot应用的实践 大家好&#xff0c;我是微赚淘客系统3.0的小编&#xff0c;也是冬天不穿秋裤&#xff0c;天冷也要风度的程序猿&#xff01; Kubernetes&#xff08;简称K8s&#xff09;是一个开源的容器编排引擎&#xff0c;广泛用于自动化部署、扩…

对jwt的理解

json web token 先看写好的 例子 const jwt require("jsonwebtoken");//加密字符串 const secretKey "xixihaha";// 生成token module.exports.generateToken function (payload) { const token jwt.sign(payload, secretKey, {expiresIn:60*5,//有效…

Linux服务器使用总结-不定时更新

# 查看升级日志 cat /var/log/dpkg.log |grep nvidia|grep libnvidia-common

如何在多个服务器上安装WordPress分布式部署

许多网络主机现在保证其服务的正常运行时间为 99.9%&#xff0c;但这仍然每年最多有 8.7 小时的停机时间。 许多公司不能够承担这种风险。例如。在超级碗比赛中失败的体育新闻网站可能会失去忠实的追随者。 我们通过设置维护高可用性 WordPress分布式部署配置来帮助 WordPres…

实现Java多线程中的线程间通信

实现Java多线程中的线程间通信 大家好&#xff0c;我是微赚淘客系统3.0的小编&#xff0c;也是冬天不穿秋裤&#xff0c;天冷也要风度的程序猿&#xff01; 1. 线程间通信的基本概念 在线程编程中&#xff0c;线程间通信是指多个线程之间通过共享内存或消息传递的方式进行交…

访问控制列表ACL

一、什么是ACL ACL&#xff08;Access Control List&#xff0c;访问控制列表&#xff09;是一种基于包过滤的访问控制技术。它可以根据预先设定的条件对数据包进行过滤&#xff0c;允许或拒绝其通过某个网络接口。ACL广泛应用于路由器和三层交换机上&#xff0c;用于控制用户…

如何验证序列化数据的完整性和真实性

目录 数据完整性验证 数据真实性验证 其他验证方法 综合使用多种方法 安全传输 定期审计和监控 数据完整性验证 校验和(Checksum):为序列化的数据计算一个校验和(例如MD5或SHA-256),并将该校验和与原始数据一同存储或传输。在接收端,重新计算校验和并与原始校验和…

unity3d:Shader知识点,矩阵,函数,坐标转换,Tags,半透明,阴影,深度,亮度,优化

基本结构 Shader "MyShaderName" {Properties {// 属性}SubShader {// 针对显卡A的SubShaderPass {// 设置渲染状态和标签Tags { "LightMode""ForwardBase" }// 开始Cg代码片段CGPROGRAM// 该代码片段的编译指令&#xff0c;例如&#xff1a;#p…

【笔记】在window上连接虚拟机中的redis

愚昧啊 困扰了我近两天的问题居然是因为是java代码写错地方了 在虚拟机中进入redis.conf文件 vim redis.conf /bind --斜杠搜索关键词 将值设置为 bind 0.0.0.0 保存 退出:wq 回到java中 添加redis依赖 刷新maven 就是在这一步出问题……………………………………自己在蓝…

深入解析 MySQL 的 SHOW FULL PROCESSLIST

在数据库管理中&#xff0c;监控和理解数据库进程是至关重要的。MySQL 提供了 SHOW PROCESSLIST 命令&#xff0c;它允许管理员查看当前所有活动线程的列表&#xff0c;包括它们的状态、执行的命令、消耗的资源等。这不仅帮助我们了解数据库的运行情况&#xff0c;还可以用于性…

55、定义浅层神经网络架构和算法(matlab)

1、定义浅层神经网络架构和算法简介 浅层神经网络是一种简单的神经网络结构&#xff0c;通常只包含一个输入层、一个或多个隐藏层和一个输出层。在训练时&#xff0c;通过反向传播算法来不断调整神经元之间的连接权重&#xff0c;从而实现对输入数据的分类、回归等任务。 一个…

LeetCode 189.轮转数组 三段逆置 C写法

LeetCode 189.轮转数组 C写法 三段逆置 思路: 三段逆置方法:先逆置前n-k个 再逆置后k个 最后整体逆置 由示例1得&#xff0c;需要先逆置1,2,3,4 再逆置5,6,7&#xff0c;最后前n-k个与后k个逆置 代码 void reverse(int*num, int left, int right) //逆置函数 { while(left …

RedHat运维-LinuxSELinux基础5-排查SELinux问题

1. 当SELinux拒绝了一个行为之后&#xff0c;一条AVC信息就会被登记到____________________文件当中&#xff0c;同时也会被登记到______________________文件当中&#xff1b; 2. 当SELinux拒绝了一个行为之后&#xff0c;一条AVC信息就会被登记到____________________文件当中…

react-类组件1

类组件&#xff1a; import { Component } from "react";class App extends Component {constructor() {super();this.state {message: "xxxxx",};}render() {return (<div><div>{this.state.message}</div></div>);} }export d…

算法的空间复杂度(C语言)

1.空间复杂度的定义 算法在临时占用储存空间大小的量度&#xff08;就是完成这个算法所额外开辟的空间&#xff09;&#xff0c;空间复杂度也使用大O渐进表示法来表示 注&#xff1a; 函数在运行时所需要的栈空间(储存参数&#xff0c;局部变量&#xff0c;一些寄存器信息等)…