// 演示代码 function unique(arr) { /* your code */ } let strings = ["Hare", "Krishna", "Hare", "Krishna", "Krishna", "Krishna", "Hare", "Hare", ":-O" ]; a ...
分类:
编程语言 时间:
2021-01-25 10:47:59
阅读次数:
0
// 演示代码 function unique(arr) { /* your code */ } let strings = ["Hare", "Krishna", "Hare", "Krishna", "Krishna", "Krishna", "Hare", "Hare", ":-O" ]; a ...
分类:
编程语言 时间:
2021-01-22 11:50:53
阅读次数:
0
最近看一个新系统,发现里面有很多场景用到唯一id,便搜罗了一下常见的方案。 对于分布式id,需要满足下面的基本要求 全局唯一 趋势递增 1. UUID UUID(Universally Unique Identifier)全局唯一标识符,定义为一个字符串主键,采用32位数字组成,编码采用16进制,定 ...
分类:
其他好文 时间:
2021-01-21 10:48:34
阅读次数:
0
今天在做p2p客户端的收发消息操作,由于传的消息是个结构体,前四个字节被定义为整型,用来判断是哪类报文,在收消息的时候就涉及吧char*转换为int 做法如下: auto recv_buf=std::make_unique<char[]>(1024);//分配1024字节的动态空间作为缓冲区 int ...
分类:
编程语言 时间:
2021-01-15 12:12:31
阅读次数:
0
Given n, how many structurally unique BST's (binary search trees) that store values 1 ... n? Example: Input: 3 Output: 5 Explanation: Given n = 3, the ...
分类:
其他好文 时间:
2021-01-12 11:12:21
阅读次数:
0
DDL:操作数据库和表 drop alter create DML:增删改数据库表的记录 insert update delete DQL:查询表中的记录 select DCL:管理用户、授权 grant 查询 查询表中的所有的行和列的数据 selectfrom 表名; selectfrom stu ...
分类:
数据库 时间:
2021-01-07 12:01:12
阅读次数:
0
1.构造数据 为了操作方便, 先构造以下数据 1.1 学生表 create table `student` ( `id` int unsigned primary key auto_increment, `name` char(32) not null unique, `sex` enum('男', ...
分类:
数据库 时间:
2021-01-06 12:13:37
阅读次数:
0
static void TimerInterruptHandler(void * CallBackRef) { static int sec = 0; printf("%d Seconds\n", sec++); XScuTimer * TimerInstPtr = (XScuTimer *)Cal ...
分类:
其他好文 时间:
2021-01-06 11:51:20
阅读次数:
0
#include <deque> #include <thread> #include <mutex> #include <condition_variable> using namespace std; deque<int> queue; mutex mtx; condition_variable ...
分类:
其他好文 时间:
2020-12-31 12:12:20
阅读次数:
0
#TitleSolutionAcceptanceDifficultyFrequency 5 Longest Palindromic Substring 30.0% Medium -- 62 Unique Paths 55.4% Medium -- 63 Unique Paths II 35.0% M ...
分类:
其他好文 时间:
2020-12-31 12:06:06
阅读次数:
0