
算法
文章平均质量分 61
侠客岛的含笑
我只不过在说有可能发生的事情,我并没有肯定的说法,不相信也不怀疑,要是想法偏向任何一边,而真相却相反的时候。(这是以前菜鸡的我)
展开
-
20.Valid Parentheses with stack
#include <iostream> #include <cassert> #include <string> #include <stack> using namespace std; class Solution { public: bool isVaild(string s){ stack<char>...原创 2018-05-28 09:58:26 · 638 阅读 · 0 评论 -
数据结构与算法入门
任何高大上的技术都需要踏踏实实的基础:算法+数据结构+编译原理+操作系统白板编程 To summarize: We have seen that computer programming is an art, because it applies accumulated knowledge to the world, because it requires skill and ingenuity原创 2017-04-17 22:17:36 · 768 阅读 · 0 评论