剑指 Offer 24. 反转链表 定义一个函数,输入一个链表的头节点,反转该链表并输出反转后链表的头节点。 示例: 输入: 1->2->3->4->5->NULL 输出: 5->4->3->2->1->NULL 限制: 0 <= 节点个数 <= 5000 思路 golang 笨方法:遍历链表,新建 ...
分类:
其他好文 时间:
2021-04-24 13:41:51
阅读次数:
0
1 // 防抖 2 function debounce(func,delay){ 3 let timer = null 4 return function(){ 5 let context = this 6 let args = arguments 7 if(timer) clearTimeout( ...
分类:
Web程序 时间:
2021-04-24 11:51:25
阅读次数:
0
Spring Boot 下使用JPA,报org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set错误,异常信息如下: Caused ...
分类:
编程语言 时间:
2021-04-23 12:28:00
阅读次数:
0
for in 一般用于遍历对象的可枚举属性。以及对象从构造函数原型中继承的属性。对于每个不同的属性,语句都会被执行。 不建议使用for in 遍历数组,因为输出的顺序是不固定的。 如果迭代的对象的变量值是null或者undefined, for in不执行循环体,建议在使用for in循环之前,先检 ...
分类:
其他好文 时间:
2021-04-23 12:25:38
阅读次数:
0
Spring注解 @Controller(表示SpringMVC的Controller)、@RestController(Rest风格控制器,还可以若要返回JSON不需要@ResponseBody了)、@Service(业务服务层)、@Autowired(如果允许null值,required=fal ...
分类:
编程语言 时间:
2021-04-22 16:17:58
阅读次数:
0
目标:对学员登录数、学员注册数、课程播放数、每日课程数进行特定日期统计。画出上图。 一、数据库设计 statistics_daily CREATE TABLE `statistics_daily` ( `id` char(19) NOT NULL COMMENT '主键', `date_calcul ...
分类:
其他好文 时间:
2021-04-22 15:21:22
阅读次数:
0
9.3.1常见的运算符 关系运算符:=、!=、<>、>=、<= 区间:between A and B -》[A,B] And :并且,和。 Or:或者 Is null:空 Not:否,非 Is not null:非空 In:在什么里面 9.3.2 或or、并且and ##(2.1)查询性别女,并且 ...
分类:
其他好文 时间:
2021-04-22 15:17:27
阅读次数:
0
Java字符串 三个字符串类 String (不可变) StringBuilder (可变) StringBuffer(可变) 空字符串不是null,空字符串分配了空间,而null没有分配空间 不可变字符串的创建 package chapter8; public class chapt01 { pu ...
分类:
编程语言 时间:
2021-04-21 12:02:46
阅读次数:
0
同事离职了,接手了他的代码。。 有客户反馈登录密码错误后被锁定不会解锁,或者错误一次就被锁定(???)。 不多比比,直接代码看看 //登陆失败次数 int FailedCount = 0; if (null == Request.Cookies["FailedError"]) { HttpCooki ...
分类:
其他好文 时间:
2021-04-21 11:44:18
阅读次数:
0
关系运算符:=、!=、<>、>=、<= 区间:between A and B -> [A,B] And:并且,和。 Or:或者 Is null:空 Not:否,非 Is not null:非空 In:在什么里面 ...
分类:
其他好文 时间:
2021-04-21 11:43:57
阅读次数:
0