文章作者:里海 来源网站:https://blog.csdn.net/WangPaiFeiXingYuan
UF_CSYS_set_wcs
Defined in: uf_csys.h int UF_CSYS_set_wcs(tag_t csys_id )
overview 概述
Sets the work coordinate system to the prototype coordinate system whose tag y…
1 堆
1.1 堆结构
堆是用数组实现的完全二叉树结构完全二叉树中如果每棵树的最大值都在顶部就是大根堆,最小值在顶部就是小根堆堆结构的heapInsert就是插入操作,heapify是取出数组后进行堆结构调整的操作优先级队列结构就是堆结构
public class Heap {…
1、脏读 「事务B」将 id 为 1 的用户 name 修改为“小卡”,事务未提交。「事务A」查询 id 为 1 的用户数据,此时 name 已为“小卡”。
2、不可重复度 「事务A」第一次读取 id 为 1 的用户,name 是 “卡卡”。「事务B」将 id 为 1 的用户 nam…