摘要: 数据库事务的隔离级别有4个,由低到高依次为Read uncommitted、Read committed、Repeatable read、Serializable 这四个级别可以逐个解决脏读、不可重复读、幻读这几类问题。 READ UNCOMMITTED (未提交读): 事务中的修改,即使没提交,对 阅读全文
posted @ 2018-01-08 11:08 __Meng 阅读(389) 评论(0) 推荐(0) 编辑
摘要: Implement the following operations of a queue using stacks. push(x) -- Push element x to the back of queue. pop() -- Removes the element from in front 阅读全文
posted @ 2018-01-08 10:00 __Meng 阅读(168) 评论(0) 推荐(0) 编辑