
C and C Plus Plus
文章平均质量分 80
boby2018
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Study notes "Basic algorithms of dynamic programming and backtracking
1. Dynamic Programming:tutorial notes, original tutorial is from youtube: https://www.youtube.com/watch?v=Jakbj4vaIbE&t=1204s例子21) Maximum Value Contiguous Subsequence(最大连续子序列和)资料:http://blog.csd...转载 2018-03-14 08:41:03 · 195 阅读 · 0 评论 -
Study notes of achieving a senior software engineer
All notes are from internet and they are only for my personally quick revision. Necessary algorithms for Google Interview1.binary tree 2. graph study notes3.Dijkstra Algorithm/* Petar 'PetarV' Velick...原创 2018-03-10 22:48:55 · 285 阅读 · 0 评论 -
C++ basic kills
This is my personal study notes, only for quick revision of the c++ knowledge. So, all of notes are from internet. But the combination of this summary is my workdouble pointer usage以下 Virtual 函数 学习笔记:...原创 2018-03-10 23:00:15 · 234 阅读 · 0 评论 -
C++ regular expression, study notes
The first note:/*regular experssion grammars: ECMAScript最powerful,也是下面用的 basic extended awk grep egrep */ #include<regex> #include<iostream> using namespace std; int main(){//基本查找匹配 strin...原创 2018-03-17 03:17:10 · 337 阅读 · 0 评论 -
sorting algorithms
reference: https://www.geeksforgeeks.org/quick-sort/1. Bitonic sort:1. 双调序列是一个先单调递增后单调递减(或者先单调递减后单调递增)的序列 the graph above is from http://blog.youkuaiyun.com/xbinworld/article/details/764085952.对于不是双调序列的...原创 2018-03-11 09:10:54 · 413 阅读 · 0 评论 -
linked list
1. reverse linked list:#include<stdio.h> #include<stdlib.h> /* Link list node */ struct Node { int data; struct Node* next; }; /* Function to reverse the linked list */ static ...原创 2018-03-12 07:22:08 · 238 阅读 · 0 评论 -
C++ string operation, study notes
C APIs for string C++ APIs for string best APi for delimiter:1. istringstream, 空格会成为字符串参数...原创 2018-03-18 03:16:55 · 494 阅读 · 0 评论 -
C++ muparser caculater study notes
official site : http://beltoforion.de/article.php?a=muparser1. download source code from github which can be found in the official site2.get library after compiling the source code. follow the guid...原创 2018-03-18 03:41:21 · 765 阅读 · 0 评论