摘要: LeetCode:Ransom Note 【问题再现】 Given an arbitrary ransom note string and another string containing letters from all the magazines, write a function that 阅读全文
posted @ 2016-09-24 21:58 子烁爱学习 阅读(182) 评论(0) 推荐(0) 编辑
摘要: LeetCode:Find the Difference 【问题再现】 Given two strings s and t which consist of only lowercase letters. String t is generated by random shuffling strin 阅读全文
posted @ 2016-09-24 20:33 子烁爱学习 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 数据结构:顺序栈的实现 1、快速开始 栈是一种遵循元素后进(Push)先出(Pop)规则的线性表,即最后加入的元素最先出来,它的实现可以用数组或者链表。 它的特点如下: 后入先出,先入后出。 除了头尾节点之外,每一个元素有一个前驱,有一个后继。 2、实现栈 我们已经说过了,栈是一种线性表,故其底层是 阅读全文
posted @ 2016-09-24 14:50 子烁爱学习 阅读(4062) 评论(0) 推荐(0) 编辑