- 博客(13)
- 资源 (1)
- 收藏
- 关注
原创 NLP study note
dependency parsing: http://robotics.usc.edu/~gkoch/DependencyManual.pdfexample and explanation: http://universaldependencies.org/u/dep/中文翻译:https://www.jianshu.com/p/5c461cf096c4中文总结:https://bl...
2018-04-04 22:08:26
166
原创 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
744
原创 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
470
原创 linux study notes
1. Linux grep command for searching text以下笔记是摘抄于:https://www.eguidedog.net/linux-tutorial/05-grep.phpgrep是Linux命令行下常用于查找过滤文本文件内容的命令。最简单的用法是:grep apple fruitlist.txt如果想忽略大小写,可以用-i参数:grep -i apple fruit...
2018-03-17 21:44:19
171
原创 C++ regular expression, study notes
The first note:/*regular experssion grammars:ECMAScript最powerful,也是下面用的basicextendedawkgrepegrep*/#include<regex>#include<iostream>using namespace std;int main(){//基本查找匹配 strin...
2018-03-17 03:17:10
322
转载 Study notes &quot;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
184
原创 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
225
原创 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
387
原创 laravel web development skills
1. Ubuntu build a local server1. /etc/apache2/apache2.conf <Directory /home/bob/bobserver/public/> Options Indexes FollowSymLinks AllowOverride all Require all granted &l...
2018-03-10 23:17:04
295
原创 Java basic
This is my personal study notes for quick revision of Java basic skills. Each single images and each paragraph are from internet and they are free sources of open to the public.JUnit4使用Java5中的注解(annot...
2018-03-10 23:06:26
219
原创 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
221
原创 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
274
Docker.dmg
2018-08-25
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人