摘要:
数据库事务的隔离级别有4个,由低到高依次为Read uncommitted、Read committed、Repeatable read、Serializable 这四个级别可以逐个解决脏读、不可重复读、幻读这几类问题。 READ UNCOMMITTED (未提交读): 事务中的修改,即使没提交,对 阅读全文
摘要:
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 阅读全文