会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Annetree的博客
把所有事情往简单了想嘛 (•̀ᴗ•́)و ̑̑
博客园
首页
新随笔
联系
管理
2020年9月2日
在不同的时区想实现时钟同步【转】
摘要: 解决方案1:使用TimeZone 解决方案2:使用setProperty System.setProperty(“user.timezone”,”Asia/Shanghai”); 来源 https://blog.csdn.net/callmev6/article/details/80989647
阅读全文
posted @ 2020-09-02 10:53 Annetree
阅读(185)
评论(0)
推荐(0)
编辑
【手撕代码2】-二叉树中序遍历(递归/非递归)
摘要: 1.递归 2.非递归的核心在于使用栈的先进后出 1 #include<cstdio> 2 #include<iostream> 3 #include<stack> 4 using namespace std; 5 6 struct treenode 7 { 8 int val; 9 treenode
阅读全文
posted @ 2020-09-02 10:52 Annetree
阅读(194)
评论(0)
推荐(0)
编辑
【手撕代码1】-判断单链表是否有环+求环的长度+求入环点
摘要: 核心思想:快慢指针 1 #include<cstdio> 2 #include<iostream> 3 using namespace std; 4 5 struct listnode { 6 int val; 7 listnode* next; 8 }; 9 listnode* meet; 10
阅读全文
posted @ 2020-09-02 10:16 Annetree
阅读(252)
评论(0)
推荐(0)
编辑
公告