├── .gitattributes ├── .gitignore ├── Notes.sln ├── Notes ├── C++ │ ├── #pragma pack(n).pdf │ ├── C++11新特性.pdf │ ├── C语言实现C++类.pdf │ ├── auto关键字.pdf │ ├── decltype()获得表达式类型.pdf │ ├── explicit(显式)关键字.pdf │ ├── extern.pdf │ ├── size_t和size_type.pdf │ ├── this指针.pdf │ ├── using关键字.pdf │ ├── victual.pdf │ ├── 位域.pdf │ ├── 内联函数.pdf │ ├── 内联函数2.pdf │ ├── 函数指针.pdf │ ├── 函数重载.pdf │ ├── 对象的初始化和清理.pdf │ ├── 引用.pdf │ ├── 泛型指针.pdf │ ├── 类对象作为类成员.pdf │ ├── 静态成员.pdf │ └── 顶层const和底层const.pdf ├── Data_structure │ ├── 二分查找.pdf │ ├── 二叉排序树.pdf │ ├── 二叉树.pdf │ ├── 二叉树层次遍历.pdf │ ├── 二叉树的深度优先遍历.pdf │ ├── 企业链表.pdf │ ├── 冒泡排序.pdf │ ├── 哈夫曼树.pdf │ ├── 图.pdf │ ├── 图的遍历.pdf │ ├── 希尔排序.pdf │ ├── 快速排序.pdf │ ├── 插值查找.pdf │ ├── 最小生成树.pdf │ ├── 栈.pdf │ ├── 直接插入排序.pdf │ └── 选择排序.pdf ├── Gof │ ├── readme.md │ └── 设计模式常见面试题汇总 - 洲洋1984 - 博客园.pdf ├── LeetCode │ ├── 01-数组中的重复数字.pdf │ ├── 02-左旋转字符串.pdf │ ├── 03-二叉树的镜像.pdf │ ├── 04-二叉树的深度.pdf │ ├── 05-打印从1到最大的n位数.pdf │ ├── 06-替换空格.pdf │ ├── 07-链表中倒数第K个结点.pdf │ ├── 08-反转链表.pdf │ ├── 09-从头到尾打印链表.pdf │ ├── 09-从尾到头打印链表.pdf │ ├── 10-二叉搜索树的第K大结点.pdf │ ├── 11-二进制中1的个数.pdf │ ├── 12-合并两个排好序的链表.pdf │ ├── 13-用两个栈实现队列.pdf │ ├── 14-和为s的连续正数序列.pdf │ ├── 15-二叉树的最近共祖先.pdf │ ├── 16-二叉搜索树的最近共祖先.pdf │ ├── 17-数组中出现次数超过一半的数字.pdf │ ├── 18-二维数组中的查找.pdf │ ├── 19-斐波那契数列.pdf │ ├── 20-青蛙跳台阶问题.pdf │ ├── 21-旋转数组的最小数字.pdf │ ├── 22-矩阵中的路径.pdf │ ├── 23-从上到下打印二叉树.pdf │ ├── 24-2的幂次方.pdf │ ├── 25-反转字符串.pdf │ ├── 26-数值的整数次方.pdf │ ├── 27-求1+2+…+n.pdf │ ├── 28- 调整数组顺序使奇数位于偶数前面.pdf │ ├── 29-机器人的运动范围.pdf │ ├── 30-重建二叉树.pdf │ ├── 31-最大连续1的个数.pdf │ ├── 32-移动零.pdf │ ├── 33-移除元素.pdf │ ├── 34-移除链表元素.pdf │ ├── 35-剪绳子I.pdf │ ├── 36-最近的请求次数.pdf │ ├── 37-有效的括号.pdf │ ├── 38-下一个更大元素.pdf │ ├── 39-旋转数组.pdf │ ├── 40-剪绳子II.pdf │ ├── 41-树的子结构.pdf │ ├── 42-对称的二叉树.pdf │ ├── 43-顺时针打印矩阵.pdf │ ├── 44-删除链表的节点.pdf │ ├── 45-最小的k个数字.pdf │ ├── 46-包含min函数的栈.pdf │ ├── 47-连续子数组的最大和.pdf │ ├── 48-从上到下打印二叉树II.pdf │ ├── 49-第一个只出现一次的字符.pdf │ ├── 50-和为s的两个数字.pdf │ ├── 51-输出整数反转值.pdf │ ├── 52-删除序列中的0.pdf │ ├── 53-两个链表的第一个公共结点.pdf │ ├── 十大经典排序算法大梳理 (动图+代码).mhtml │ └── 单调栈.mhtml ├── Notes.vcxproj ├── Notes.vcxproj.filters ├── QT │ ├── 01-QT基本规范.pdf │ ├── 02-对象树.pdf │ ├── 03-信号与槽.pdf │ ├── 04-信号与槽(自定义).pdf │ ├── 05-信号与槽重载.pdf │ ├── 06-信号连接信号.pdf │ ├── 07-QT4信号与槽之间的连接.pdf │ ├── 08-Lambda表达式.pdf │ ├── 09-QMainWindow.pdf │ ├── 10-资源文件添加.pdf │ ├── 11-QDialog.pdf │ ├── 12-其他标准对话框.pdf │ ├── 13-界面布局.pdf │ ├── 14-常用控件布局.pdf │ ├── 15-QTreeWidget控件.pdf │ ├── 16-Table Widget控件.pdf │ ├── 17-其他控件介绍.pdf │ ├── 18-自定义控件封装.pdf │ ├── 19-QEvent.pdf │ ├── 20-定时器.pdf │ ├── 21-定时器类.pdf │ ├── 22-event事件分发器.pdf │ ├── 23-事件过滤器.pdf │ ├── 24-绘图事件.pdf │ ├── 25-绘图高级设置.pdf │ ├── 26-手动调用绘图事件.pdf │ ├── 27-绘图设备.pdf │ ├── 28-QFile文件读写.pdf │ ├── 29-QFileInfo文件信息读取.pdf │ └── 30-二进制资源导入.pdf ├── git │ ├── 01_仓库篇.pdf │ ├── 02_文件篇.pdf │ ├── 03_分支篇.pdf │ ├── 04_tag篇.pdf │ ├── 05_版本控制篇.pdf │ └── 06_提交.pdf ├── other │ ├── arm编译参数详解.pdf │ └── vscode使用ssh连接虚拟机方法.pdf ├── the_interview │ ├── 18个非技术面试题.pdf │ ├── C++面试题(1).pdf │ ├── C语言面试题(1).pdf │ ├── 常用排序算法及其思想.pdf │ ├── 常见设计模式汇总.pdf │ ├── 面试题_page1.pdf │ ├── 面试题_page2.pdf │ ├── 面试题_page3.pdf │ ├── 面试题_page4.pdf │ ├── 面试题_page5.pdf │ └── 面试题汇总.pdf └── tls │ ├── TLS技术Q&A.pdf │ └── 自签名证书生成及使用流程.pdf └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Set default behavior to automatically normalize line endings. 3 | ############################################################################### 4 | * text=auto 5 | 6 | ############################################################################### 7 | # Set default behavior for command prompt diff. 8 | # 9 | # This is need for earlier builds of msysgit that does not have it on by 10 | # default for csharp files. 11 | # Note: This is only used by command line 12 | ############################################################################### 13 | #*.cs diff=csharp 14 | 15 | ############################################################################### 16 | # Set the merge driver for project and solution files 17 | # 18 | # Merging from the command prompt will add diff markers to the files if there 19 | # are conflicts (Merging from VS is not affected by the settings below, in VS 20 | # the diff markers are never inserted). Diff markers may cause the following 21 | # file extensions to fail to load in VS. An alternative would be to treat 22 | # these files as binary and thus will always conflict and require user 23 | # intervention with every merge. To do so, just uncomment the entries below 24 | ############################################################################### 25 | #*.sln merge=binary 26 | #*.csproj merge=binary 27 | #*.vbproj merge=binary 28 | #*.vcxproj merge=binary 29 | #*.vcproj merge=binary 30 | #*.dbproj merge=binary 31 | #*.fsproj merge=binary 32 | #*.lsproj merge=binary 33 | #*.wixproj merge=binary 34 | #*.modelproj merge=binary 35 | #*.sqlproj merge=binary 36 | #*.wwaproj merge=binary 37 | 38 | ############################################################################### 39 | # behavior for image files 40 | # 41 | # image files are treated as binary by default. 42 | ############################################################################### 43 | #*.jpg binary 44 | #*.png binary 45 | #*.gif binary 46 | 47 | ############################################################################### 48 | # diff behavior for common document formats 49 | # 50 | # Convert binary document formats to text before diffing them. This feature 51 | # is only available from the command line. Turn it on by uncommenting the 52 | # entries below. 53 | ############################################################################### 54 | #*.doc diff=astextplain 55 | #*.DOC diff=astextplain 56 | #*.docx diff=astextplain 57 | #*.DOCX diff=astextplain 58 | #*.dot diff=astextplain 59 | #*.DOT diff=astextplain 60 | #*.pdf diff=astextplain 61 | #*.PDF diff=astextplain 62 | #*.rtf diff=astextplain 63 | #*.RTF diff=astextplain 64 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | 4 | # User-specific files 5 | *.suo 6 | *.user 7 | *.userosscache 8 | *.sln.docstates 9 | 10 | # User-specific files (MonoDevelop/Xamarin Studio) 11 | *.userprefs 12 | 13 | # Build results 14 | [Dd]ebug/ 15 | [Dd]ebugPublic/ 16 | [Rr]elease/ 17 | [Rr]eleases/ 18 | x64/ 19 | x86/ 20 | bld/ 21 | [Bb]in/ 22 | [Oo]bj/ 23 | [Ll]og/ 24 | 25 | # Visual Studio 2015 cache/options directory 26 | .vs/ 27 | # Uncomment if you have tasks that create the project's static files in wwwroot 28 | #wwwroot/ 29 | 30 | # MSTest test Results 31 | [Tt]est[Rr]esult*/ 32 | [Bb]uild[Ll]og.* 33 | 34 | # NUNIT 35 | *.VisualState.xml 36 | TestResult.xml 37 | 38 | # Build Results of an ATL Project 39 | [Dd]ebugPS/ 40 | [Rr]eleasePS/ 41 | dlldata.c 42 | 43 | # DNX 44 | project.lock.json 45 | project.fragment.lock.json 46 | artifacts/ 47 | 48 | *_i.c 49 | *_p.c 50 | *_i.h 51 | *.ilk 52 | *.meta 53 | *.obj 54 | *.pch 55 | *.pdb 56 | *.pgc 57 | *.pgd 58 | *.rsp 59 | *.sbr 60 | *.tlb 61 | *.tli 62 | *.tlh 63 | *.tmp 64 | *.tmp_proj 65 | *.log 66 | *.vspscc 67 | *.vssscc 68 | .builds 69 | *.pidb 70 | *.svclog 71 | *.scc 72 | 73 | # Chutzpah Test files 74 | _Chutzpah* 75 | 76 | # Visual C++ cache files 77 | ipch/ 78 | *.aps 79 | *.ncb 80 | *.opendb 81 | *.opensdf 82 | *.sdf 83 | *.cachefile 84 | *.VC.db 85 | *.VC.VC.opendb 86 | 87 | # Visual Studio profiler 88 | *.psess 89 | *.vsp 90 | *.vspx 91 | *.sap 92 | 93 | # TFS 2012 Local Workspace 94 | $tf/ 95 | 96 | # Guidance Automation Toolkit 97 | *.gpState 98 | 99 | # ReSharper is a .NET coding add-in 100 | _ReSharper*/ 101 | *.[Rr]e[Ss]harper 102 | *.DotSettings.user 103 | 104 | # JustCode is a .NET coding add-in 105 | .JustCode 106 | 107 | # TeamCity is a build add-in 108 | _TeamCity* 109 | 110 | # DotCover is a Code Coverage Tool 111 | *.dotCover 112 | 113 | # NCrunch 114 | _NCrunch_* 115 | .*crunch*.local.xml 116 | nCrunchTemp_* 117 | 118 | # MightyMoose 119 | *.mm.* 120 | AutoTest.Net/ 121 | 122 | # Web workbench (sass) 123 | .sass-cache/ 124 | 125 | # Installshield output folder 126 | [Ee]xpress/ 127 | 128 | # DocProject is a documentation generator add-in 129 | DocProject/buildhelp/ 130 | DocProject/Help/*.HxT 131 | DocProject/Help/*.HxC 132 | DocProject/Help/*.hhc 133 | DocProject/Help/*.hhk 134 | DocProject/Help/*.hhp 135 | DocProject/Help/Html2 136 | DocProject/Help/html 137 | 138 | # Click-Once directory 139 | publish/ 140 | 141 | # Publish Web Output 142 | *.[Pp]ublish.xml 143 | *.azurePubxml 144 | # TODO: Comment the next line if you want to checkin your web deploy settings 145 | # but database connection strings (with potential passwords) will be unencrypted 146 | #*.pubxml 147 | *.publishproj 148 | 149 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 150 | # checkin your Azure Web App publish settings, but sensitive information contained 151 | # in these scripts will be unencrypted 152 | PublishScripts/ 153 | 154 | # NuGet Packages 155 | *.nupkg 156 | # The packages folder can be ignored because of Package Restore 157 | **/packages/* 158 | # except build/, which is used as an MSBuild target. 159 | !**/packages/build/ 160 | # Uncomment if necessary however generally it will be regenerated when needed 161 | #!**/packages/repositories.config 162 | # NuGet v3's project.json files produces more ignoreable files 163 | *.nuget.props 164 | *.nuget.targets 165 | 166 | # Microsoft Azure Build Output 167 | csx/ 168 | *.build.csdef 169 | 170 | # Microsoft Azure Emulator 171 | ecf/ 172 | rcf/ 173 | 174 | # Windows Store app package directories and files 175 | AppPackages/ 176 | BundleArtifacts/ 177 | Package.StoreAssociation.xml 178 | _pkginfo.txt 179 | 180 | # Visual Studio cache files 181 | # files ending in .cache can be ignored 182 | *.[Cc]ache 183 | # but keep track of directories ending in .cache 184 | !*.[Cc]ache/ 185 | 186 | # Others 187 | ClientBin/ 188 | ~$* 189 | *~ 190 | *.dbmdl 191 | *.dbproj.schemaview 192 | *.jfm 193 | *.pfx 194 | *.publishsettings 195 | node_modules/ 196 | orleans.codegen.cs 197 | 198 | # Since there are multiple workflows, uncomment next line to ignore bower_components 199 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 200 | #bower_components/ 201 | 202 | # RIA/Silverlight projects 203 | Generated_Code/ 204 | 205 | # Backup & report files from converting an old project file 206 | # to a newer Visual Studio version. Backup files are not needed, 207 | # because we have git ;-) 208 | _UpgradeReport_Files/ 209 | Backup*/ 210 | UpgradeLog*.XML 211 | UpgradeLog*.htm 212 | 213 | # SQL Server files 214 | *.mdf 215 | *.ldf 216 | 217 | # Business Intelligence projects 218 | *.rdl.data 219 | *.bim.layout 220 | *.bim_*.settings 221 | 222 | # Microsoft Fakes 223 | FakesAssemblies/ 224 | 225 | # GhostDoc plugin setting file 226 | *.GhostDoc.xml 227 | 228 | # Node.js Tools for Visual Studio 229 | .ntvs_analysis.dat 230 | 231 | # Visual Studio 6 build log 232 | *.plg 233 | 234 | # Visual Studio 6 workspace options file 235 | *.opt 236 | 237 | # Visual Studio LightSwitch build output 238 | **/*.HTMLClient/GeneratedArtifacts 239 | **/*.DesktopClient/GeneratedArtifacts 240 | **/*.DesktopClient/ModelManifest.xml 241 | **/*.Server/GeneratedArtifacts 242 | **/*.Server/ModelManifest.xml 243 | _Pvt_Extensions 244 | 245 | # Paket dependency manager 246 | .paket/paket.exe 247 | paket-files/ 248 | 249 | # FAKE - F# Make 250 | .fake/ 251 | 252 | # JetBrains Rider 253 | .idea/ 254 | *.sln.iml 255 | 256 | # CodeRush 257 | .cr/ 258 | 259 | # Python Tools for Visual Studio (PTVS) 260 | __pycache__/ 261 | *.pyc -------------------------------------------------------------------------------- /Notes.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.28307.1622 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Notes", "Notes\Notes.vcxproj", "{1C6D2B09-5BFD-4C84-92A0-0C133998828E}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|x64 = Debug|x64 11 | Debug|x86 = Debug|x86 12 | Release|x64 = Release|x64 13 | Release|x86 = Release|x86 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {1C6D2B09-5BFD-4C84-92A0-0C133998828E}.Debug|x64.ActiveCfg = Debug|x64 17 | {1C6D2B09-5BFD-4C84-92A0-0C133998828E}.Debug|x64.Build.0 = Debug|x64 18 | {1C6D2B09-5BFD-4C84-92A0-0C133998828E}.Debug|x86.ActiveCfg = Debug|Win32 19 | {1C6D2B09-5BFD-4C84-92A0-0C133998828E}.Debug|x86.Build.0 = Debug|Win32 20 | {1C6D2B09-5BFD-4C84-92A0-0C133998828E}.Release|x64.ActiveCfg = Release|x64 21 | {1C6D2B09-5BFD-4C84-92A0-0C133998828E}.Release|x64.Build.0 = Release|x64 22 | {1C6D2B09-5BFD-4C84-92A0-0C133998828E}.Release|x86.ActiveCfg = Release|Win32 23 | {1C6D2B09-5BFD-4C84-92A0-0C133998828E}.Release|x86.Build.0 = Release|Win32 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | GlobalSection(ExtensibilityGlobals) = postSolution 29 | SolutionGuid = {879FD2BC-3AF3-4CB8-8704-9BCBB0C4F9CA} 30 | EndGlobalSection 31 | EndGlobal 32 | -------------------------------------------------------------------------------- /Notes/C++/#pragma pack(n).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/C++/#pragma pack(n).pdf -------------------------------------------------------------------------------- /Notes/C++/C++11新特性.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/C++/C++11新特性.pdf -------------------------------------------------------------------------------- /Notes/C++/C语言实现C++类.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/C++/C语言实现C++类.pdf -------------------------------------------------------------------------------- /Notes/C++/auto关键字.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/C++/auto关键字.pdf -------------------------------------------------------------------------------- /Notes/C++/decltype()获得表达式类型.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/C++/decltype()获得表达式类型.pdf -------------------------------------------------------------------------------- /Notes/C++/explicit(显式)关键字.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/C++/explicit(显式)关键字.pdf -------------------------------------------------------------------------------- /Notes/C++/extern.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/C++/extern.pdf -------------------------------------------------------------------------------- /Notes/C++/size_t和size_type.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/C++/size_t和size_type.pdf -------------------------------------------------------------------------------- /Notes/C++/this指针.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/C++/this指针.pdf -------------------------------------------------------------------------------- /Notes/C++/using关键字.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/C++/using关键字.pdf -------------------------------------------------------------------------------- /Notes/C++/victual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/C++/victual.pdf -------------------------------------------------------------------------------- /Notes/C++/位域.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/C++/位域.pdf -------------------------------------------------------------------------------- /Notes/C++/内联函数.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/C++/内联函数.pdf -------------------------------------------------------------------------------- /Notes/C++/内联函数2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/C++/内联函数2.pdf -------------------------------------------------------------------------------- /Notes/C++/函数指针.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/C++/函数指针.pdf -------------------------------------------------------------------------------- /Notes/C++/函数重载.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/C++/函数重载.pdf -------------------------------------------------------------------------------- /Notes/C++/对象的初始化和清理.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/C++/对象的初始化和清理.pdf -------------------------------------------------------------------------------- /Notes/C++/引用.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/C++/引用.pdf -------------------------------------------------------------------------------- /Notes/C++/泛型指针.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/C++/泛型指针.pdf -------------------------------------------------------------------------------- /Notes/C++/类对象作为类成员.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/C++/类对象作为类成员.pdf -------------------------------------------------------------------------------- /Notes/C++/静态成员.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/C++/静态成员.pdf -------------------------------------------------------------------------------- /Notes/C++/顶层const和底层const.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/C++/顶层const和底层const.pdf -------------------------------------------------------------------------------- /Notes/Data_structure/二分查找.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/Data_structure/二分查找.pdf -------------------------------------------------------------------------------- /Notes/Data_structure/二叉排序树.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/Data_structure/二叉排序树.pdf -------------------------------------------------------------------------------- /Notes/Data_structure/二叉树.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/Data_structure/二叉树.pdf -------------------------------------------------------------------------------- /Notes/Data_structure/二叉树层次遍历.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/Data_structure/二叉树层次遍历.pdf -------------------------------------------------------------------------------- /Notes/Data_structure/二叉树的深度优先遍历.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/Data_structure/二叉树的深度优先遍历.pdf -------------------------------------------------------------------------------- /Notes/Data_structure/企业链表.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/Data_structure/企业链表.pdf -------------------------------------------------------------------------------- /Notes/Data_structure/冒泡排序.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/Data_structure/冒泡排序.pdf -------------------------------------------------------------------------------- /Notes/Data_structure/哈夫曼树.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/Data_structure/哈夫曼树.pdf -------------------------------------------------------------------------------- /Notes/Data_structure/图.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/Data_structure/图.pdf -------------------------------------------------------------------------------- /Notes/Data_structure/图的遍历.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/Data_structure/图的遍历.pdf -------------------------------------------------------------------------------- /Notes/Data_structure/希尔排序.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/Data_structure/希尔排序.pdf -------------------------------------------------------------------------------- /Notes/Data_structure/快速排序.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/Data_structure/快速排序.pdf -------------------------------------------------------------------------------- /Notes/Data_structure/插值查找.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/Data_structure/插值查找.pdf -------------------------------------------------------------------------------- /Notes/Data_structure/最小生成树.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/Data_structure/最小生成树.pdf -------------------------------------------------------------------------------- /Notes/Data_structure/栈.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/Data_structure/栈.pdf -------------------------------------------------------------------------------- /Notes/Data_structure/直接插入排序.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/Data_structure/直接插入排序.pdf -------------------------------------------------------------------------------- /Notes/Data_structure/选择排序.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/Data_structure/选择排序.pdf -------------------------------------------------------------------------------- /Notes/Gof/readme.md: -------------------------------------------------------------------------------- 1 | ## 此文转载自博客园 2 | -------------------------------------------------------------------------------- /Notes/Gof/设计模式常见面试题汇总 - 洲洋1984 - 博客园.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/Gof/设计模式常见面试题汇总 - 洲洋1984 - 博客园.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/01-数组中的重复数字.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/01-数组中的重复数字.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/02-左旋转字符串.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/02-左旋转字符串.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/03-二叉树的镜像.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/03-二叉树的镜像.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/04-二叉树的深度.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/04-二叉树的深度.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/05-打印从1到最大的n位数.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/05-打印从1到最大的n位数.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/06-替换空格.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/06-替换空格.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/07-链表中倒数第K个结点.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/07-链表中倒数第K个结点.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/08-反转链表.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/08-反转链表.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/09-从头到尾打印链表.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/09-从头到尾打印链表.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/09-从尾到头打印链表.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/09-从尾到头打印链表.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/10-二叉搜索树的第K大结点.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/10-二叉搜索树的第K大结点.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/11-二进制中1的个数.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/11-二进制中1的个数.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/12-合并两个排好序的链表.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/12-合并两个排好序的链表.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/13-用两个栈实现队列.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/13-用两个栈实现队列.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/14-和为s的连续正数序列.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/14-和为s的连续正数序列.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/15-二叉树的最近共祖先.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/15-二叉树的最近共祖先.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/16-二叉搜索树的最近共祖先.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/16-二叉搜索树的最近共祖先.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/17-数组中出现次数超过一半的数字.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/17-数组中出现次数超过一半的数字.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/18-二维数组中的查找.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/18-二维数组中的查找.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/19-斐波那契数列.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/19-斐波那契数列.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/20-青蛙跳台阶问题.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/20-青蛙跳台阶问题.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/21-旋转数组的最小数字.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/21-旋转数组的最小数字.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/22-矩阵中的路径.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/22-矩阵中的路径.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/23-从上到下打印二叉树.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/23-从上到下打印二叉树.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/24-2的幂次方.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/24-2的幂次方.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/25-反转字符串.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/25-反转字符串.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/26-数值的整数次方.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/26-数值的整数次方.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/27-求1+2+…+n.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/27-求1+2+…+n.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/28- 调整数组顺序使奇数位于偶数前面.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/28- 调整数组顺序使奇数位于偶数前面.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/29-机器人的运动范围.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/29-机器人的运动范围.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/30-重建二叉树.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/30-重建二叉树.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/31-最大连续1的个数.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/31-最大连续1的个数.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/32-移动零.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/32-移动零.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/33-移除元素.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/33-移除元素.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/34-移除链表元素.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/34-移除链表元素.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/35-剪绳子I.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/35-剪绳子I.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/36-最近的请求次数.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/36-最近的请求次数.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/37-有效的括号.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/37-有效的括号.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/38-下一个更大元素.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/38-下一个更大元素.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/39-旋转数组.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/39-旋转数组.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/40-剪绳子II.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/40-剪绳子II.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/41-树的子结构.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/41-树的子结构.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/42-对称的二叉树.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/42-对称的二叉树.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/43-顺时针打印矩阵.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/43-顺时针打印矩阵.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/44-删除链表的节点.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/44-删除链表的节点.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/45-最小的k个数字.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/45-最小的k个数字.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/46-包含min函数的栈.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/46-包含min函数的栈.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/47-连续子数组的最大和.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/47-连续子数组的最大和.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/48-从上到下打印二叉树II.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/48-从上到下打印二叉树II.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/49-第一个只出现一次的字符.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/49-第一个只出现一次的字符.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/50-和为s的两个数字.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/50-和为s的两个数字.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/51-输出整数反转值.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/51-输出整数反转值.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/52-删除序列中的0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/52-删除序列中的0.pdf -------------------------------------------------------------------------------- /Notes/LeetCode/53-两个链表的第一个公共结点.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/LeetCode/53-两个链表的第一个公共结点.pdf -------------------------------------------------------------------------------- /Notes/Notes.vcxproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | Debug 14 | x64 15 | 16 | 17 | Release 18 | x64 19 | 20 | 21 | 22 | 15.0 23 | {1C6D2B09-5BFD-4C84-92A0-0C133998828E} 24 | Notes 25 | 10.0.17763.0 26 | 27 | 28 | 29 | Application 30 | true 31 | v141 32 | MultiByte 33 | 34 | 35 | Application 36 | false 37 | v141 38 | true 39 | MultiByte 40 | 41 | 42 | Application 43 | true 44 | v141 45 | MultiByte 46 | 47 | 48 | Application 49 | false 50 | v141 51 | true 52 | MultiByte 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | Level3 76 | Disabled 77 | true 78 | true 79 | 80 | 81 | Console 82 | 83 | 84 | 85 | 86 | Level3 87 | Disabled 88 | true 89 | true 90 | 91 | 92 | Console 93 | 94 | 95 | 96 | 97 | Level3 98 | MaxSpeed 99 | true 100 | true 101 | true 102 | true 103 | 104 | 105 | Console 106 | true 107 | true 108 | 109 | 110 | 111 | 112 | Level3 113 | MaxSpeed 114 | true 115 | true 116 | true 117 | true 118 | 119 | 120 | Console 121 | true 122 | true 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /Notes/Notes.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;hm;inl;inc;ipp;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | -------------------------------------------------------------------------------- /Notes/QT/01-QT基本规范.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/01-QT基本规范.pdf -------------------------------------------------------------------------------- /Notes/QT/02-对象树.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/02-对象树.pdf -------------------------------------------------------------------------------- /Notes/QT/03-信号与槽.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/03-信号与槽.pdf -------------------------------------------------------------------------------- /Notes/QT/04-信号与槽(自定义).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/04-信号与槽(自定义).pdf -------------------------------------------------------------------------------- /Notes/QT/05-信号与槽重载.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/05-信号与槽重载.pdf -------------------------------------------------------------------------------- /Notes/QT/06-信号连接信号.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/06-信号连接信号.pdf -------------------------------------------------------------------------------- /Notes/QT/07-QT4信号与槽之间的连接.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/07-QT4信号与槽之间的连接.pdf -------------------------------------------------------------------------------- /Notes/QT/08-Lambda表达式.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/08-Lambda表达式.pdf -------------------------------------------------------------------------------- /Notes/QT/09-QMainWindow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/09-QMainWindow.pdf -------------------------------------------------------------------------------- /Notes/QT/10-资源文件添加.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/10-资源文件添加.pdf -------------------------------------------------------------------------------- /Notes/QT/11-QDialog.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/11-QDialog.pdf -------------------------------------------------------------------------------- /Notes/QT/12-其他标准对话框.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/12-其他标准对话框.pdf -------------------------------------------------------------------------------- /Notes/QT/13-界面布局.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/13-界面布局.pdf -------------------------------------------------------------------------------- /Notes/QT/14-常用控件布局.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/14-常用控件布局.pdf -------------------------------------------------------------------------------- /Notes/QT/15-QTreeWidget控件.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/15-QTreeWidget控件.pdf -------------------------------------------------------------------------------- /Notes/QT/16-Table Widget控件.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/16-Table Widget控件.pdf -------------------------------------------------------------------------------- /Notes/QT/17-其他控件介绍.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/17-其他控件介绍.pdf -------------------------------------------------------------------------------- /Notes/QT/18-自定义控件封装.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/18-自定义控件封装.pdf -------------------------------------------------------------------------------- /Notes/QT/19-QEvent.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/19-QEvent.pdf -------------------------------------------------------------------------------- /Notes/QT/20-定时器.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/20-定时器.pdf -------------------------------------------------------------------------------- /Notes/QT/21-定时器类.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/21-定时器类.pdf -------------------------------------------------------------------------------- /Notes/QT/22-event事件分发器.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/22-event事件分发器.pdf -------------------------------------------------------------------------------- /Notes/QT/23-事件过滤器.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/23-事件过滤器.pdf -------------------------------------------------------------------------------- /Notes/QT/24-绘图事件.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/24-绘图事件.pdf -------------------------------------------------------------------------------- /Notes/QT/25-绘图高级设置.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/25-绘图高级设置.pdf -------------------------------------------------------------------------------- /Notes/QT/26-手动调用绘图事件.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/26-手动调用绘图事件.pdf -------------------------------------------------------------------------------- /Notes/QT/27-绘图设备.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/27-绘图设备.pdf -------------------------------------------------------------------------------- /Notes/QT/28-QFile文件读写.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/28-QFile文件读写.pdf -------------------------------------------------------------------------------- /Notes/QT/29-QFileInfo文件信息读取.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/29-QFileInfo文件信息读取.pdf -------------------------------------------------------------------------------- /Notes/QT/30-二进制资源导入.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/QT/30-二进制资源导入.pdf -------------------------------------------------------------------------------- /Notes/git/01_仓库篇.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/git/01_仓库篇.pdf -------------------------------------------------------------------------------- /Notes/git/02_文件篇.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/git/02_文件篇.pdf -------------------------------------------------------------------------------- /Notes/git/03_分支篇.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/git/03_分支篇.pdf -------------------------------------------------------------------------------- /Notes/git/04_tag篇.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/git/04_tag篇.pdf -------------------------------------------------------------------------------- /Notes/git/05_版本控制篇.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/git/05_版本控制篇.pdf -------------------------------------------------------------------------------- /Notes/git/06_提交.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/git/06_提交.pdf -------------------------------------------------------------------------------- /Notes/other/arm编译参数详解.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/other/arm编译参数详解.pdf -------------------------------------------------------------------------------- /Notes/other/vscode使用ssh连接虚拟机方法.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/other/vscode使用ssh连接虚拟机方法.pdf -------------------------------------------------------------------------------- /Notes/the_interview/18个非技术面试题.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/the_interview/18个非技术面试题.pdf -------------------------------------------------------------------------------- /Notes/the_interview/C++面试题(1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/the_interview/C++面试题(1).pdf -------------------------------------------------------------------------------- /Notes/the_interview/C语言面试题(1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/the_interview/C语言面试题(1).pdf -------------------------------------------------------------------------------- /Notes/the_interview/常用排序算法及其思想.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/the_interview/常用排序算法及其思想.pdf -------------------------------------------------------------------------------- /Notes/the_interview/常见设计模式汇总.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/the_interview/常见设计模式汇总.pdf -------------------------------------------------------------------------------- /Notes/the_interview/面试题_page1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/the_interview/面试题_page1.pdf -------------------------------------------------------------------------------- /Notes/the_interview/面试题_page2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/the_interview/面试题_page2.pdf -------------------------------------------------------------------------------- /Notes/the_interview/面试题_page3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/the_interview/面试题_page3.pdf -------------------------------------------------------------------------------- /Notes/the_interview/面试题_page4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/the_interview/面试题_page4.pdf -------------------------------------------------------------------------------- /Notes/the_interview/面试题_page5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/the_interview/面试题_page5.pdf -------------------------------------------------------------------------------- /Notes/the_interview/面试题汇总.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/the_interview/面试题汇总.pdf -------------------------------------------------------------------------------- /Notes/tls/TLS技术Q&A.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/tls/TLS技术Q&A.pdf -------------------------------------------------------------------------------- /Notes/tls/自签名证书生成及使用流程.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakura7301/Notes/1b58a25b0cab7997032f1b51de3580128a893910/Notes/tls/自签名证书生成及使用流程.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![example](https://img.shields.io/badge/notes-v1.0-blue.svg) ![example](https://img.shields.io/badge/user:-sakura-blue.svg) 2 | # Notes 3 | - 这个项目保存了我学习过程中的一些笔记,包括一套系统的QT教程,C++,数据结构,一小部分面试题,还有一部分是LeetCode 的刷题记录;另外,附上学习通道,希望帮得上你。 4 | *** 5 | 6 | ## 笔记目录 7 | 8 | - [C++常用关键字](https://github.com/Sakura7301/Notes/tree/master/Notes/C++) 9 | 10 | - [数据结构](https://github.com/Sakura7301/Notes/tree/master/Notes/Data_structure) 11 | 12 | - [LeetCode题解](https://github.com/Sakura7301/Notes/tree/master/Notes/LeetCode) 13 | 14 | - [QT教程](https://github.com/Sakura7301/Notes/tree/master/Notes/QT) 15 | 16 | - [设计模式](https://github.com/Sakura7301/Notes/tree/master/Notes/Gof) 17 | 18 | - [面试题汇总](https://github.com/Sakura7301/Notes/tree/master/Notes/the_interview) 19 | 20 | - [git简易教程](https://github.com/Sakura7301/Notes/tree/master/Notes/git) 21 | 22 | - [tls相关](https://github.com/Sakura7301/Notes/tree/master/Notes/tls) 23 | 24 | **最后,恬不知耻的推一下我整理的C++11吧(滑稽) 25 | 指路-->[Cplusplus_11](https://github.com/Sakura7301/Cplusplus_11)** 26 | 27 | 我上传的是pdf格式,建议你下载后查看。 28 | *** 29 | 30 | ## 学习通道(顺序就是学习路线) 31 | 32 | - [C++必看教程](https://www.bilibili.com/video/BV1et411b73Z) 33 | 34 | - [数据结构](https://www.bilibili.com/video/BV1Vb411J7XD) 35 | 36 | - [Linux系统编程](https://www.bilibili.com/video/BV1KE411q7ee) 37 | 38 | - [Linux网络编程](https://www.bilibili.com/video/BV1iJ411S7UA) 39 | 40 | - [QT_基础教程](https://www.bilibili.com/video/BV1jX4y1K7bi) 41 | 42 | - [mysql数据库](https://www.bilibili.com/video/BV1e64y117iM) 43 | 44 | - [Python爬虫编程基础5天速成](https://www.bilibili.com/video/BV12E411A7ZQ) 45 | 46 | - [LeetCode必备算法知识和练习题](https://www.bilibili.com/video/BV1xt4y1e7q4) 47 | 48 | - [手把手带你刷LeetCode](https://www.bilibili.com/video/BV1sy4y1q79M) 49 | 50 | - [LeetCode力扣1-300题视频讲解合集](https://www.bilibili.com/video/BV1xa411A76q) 51 | 52 | - [设计模式(黑马程序员版本)](https://www.bilibili.com/video/BV1Mb411t7ut) 53 | 54 | - [设计模式(李建忠老师版本)](https://pan.baidu.com/s/1FIAz7R57nPsjeLCR3tx-BA?pwd=6666) 55 | 56 | - [C++11进阶](https://www.bilibili.com/video/BV1bX4y1G7ks) 57 | *** 58 | 59 | ## 良心博文推荐 60 | 61 | - [interview](https://interview.huihut.com/#/) 62 | ->这是一个github上非常棒的项目,包含了C/C++技术面试所能用到的知识,推荐学习。 63 | 64 | 65 | - [C++那些事](https://light-city.club/sc/) 66 | ->这是一个适合初学者从入门到进阶的仓库,解决了面试者与学习者想要深入C++及如何入坑C++的问题。除此之外,该仓库拓展了更加深入的源码分析,多线程并发等的知识,是一个比较全面的C++学习从入门到进阶提升的仓库。 67 | 68 | - [代码随想录](https://programmercarl.com/) 69 | ->程序员Carl的数据结构与算法项目,在github有着很高的人气,该项目有完整的算法练习路线,并且使用多种语言做出实现,相当给力! 70 | 71 | - [C++11新特性汇总](https://changkun.de/modern-cpp/zh-cn/00-preface/) 72 | ->如果你想学习C++11,那么不应该错过这个网站 73 | 74 | - [大丙老师的C++11教程](https://subingwen.cn/cplusplus/) 75 | ->大丙老师汇总了一些常用的C++11特性进行讲解,值得学习! 76 | 77 | *** 78 | 79 | 80 | 81 | **致谢** 82 | B站up主爱敲代码的饲养员、黑马程序员、斧头帮帮主、爱编程的大丙和上传免费学习资源的同学们,同时也感谢录制视频的各位老师。 83 | 84 | --------------------------------------------------------------------------------