教小白精通编程

面向小白的编程教学博客

Markdown极简入门教程

Markdown minimalist introductory tutorial

[Markdown 极简入门教程 Markdown minimalist introductory tutorial](https://youtu.be/0JiKRyZHMW0) Markdown 基础教程 什么是 Markdown? 一种轻量级标记语言,用简单符号即可排版文档 ✅ 易读易写 ✅ 兼容纯文本 ✅ 支持转换为HTM...

'Placement new operator' and emplace_back() in C++

emplace_back() of vector is used to construct an element in-place at the end of the vector.

‘Placement new operator’ in C++ In C++, when you create an object using the ‘new’ keyword, the memory for the object is allocated on the heap, and the constructor is called to initialize the objec...

A tutorial for c++ std::accumulate

the solution for leetcode 2011 of 'Final Value of Variable After Performing Operations'

tutorial for std::accumulate and the solution for leetcode 2011 of “Final Value of Variable After Performing Operations” std::accumulate template< class InputIt, class T > T accumulate( Inp...

Anatomy of Deep Learning Principles-Writing a Deep Learning Library from Scratch

has been translated into English, Japanese and published on leanpuband amazon

Brief introduction This book introduces the basic principles and implementation process of deep learning algorithms in a simple way, and uses python’s numpy library to build its own deep learning ...

英语学习资源

REsources for Learning English

听力 #### 美剧: 摩登家庭Modern Family 、 老爸老妈浪漫史How I met your mother 神烦警探 brooklyn 99 Scrubs 实习医生风云 硅谷Silicon Valley Fleabag 伦敦生活 #### Talk Show: ellen show James Corden The Graham...

java入门教程 1.3 - 运算符

Java tutorial 1.3 operator

1.3 运算符、表达式、语句、程序块 (operator, Expressions, Statements, and Blocks) 1.3.1 运算符(operator) 运算符是对运算数(变量、文字量或表达式的值)执行运算的符号。例如,+、-、*、/分别是对2个运算数进行加法、减法、乘法和除法的运算符。Java中有许多类型的运算符: 算术运算符 关系运算符 逻辑运算符 位运算符 赋...

java入门教程 2 - 变量、数据类型、文字量

Java Tutorial 2 -Variable、Primitive Data Types、literals

1.2.1 变量variable (youtube视频:变量) Java中的变量分为原始变量(primitive variables) 和 引用变量(reference variables)。 原始变量是保存(原始类型)数据(值)的内存块的名字,你可以认为原始变量就是这块内存块。如: int age = 20; 这个代码语句定义了一个名字叫age的变量,其数据类型是int,int是一个...

java入门教程 1 - Java语言介绍

Java Tutorial 1 - Introduction to Java

1.1 java介绍 ( youtube视频 ) 1.1.1 Java技术(Java Technology) Java技术既是一种编程语言又是一个平台(Java technology is both a programming language and a platform.)。 Java 编程语言 (The Java Programming Language) 编程语言可分为机器语...

Youtube编程视频字幕

Youtube编程视频字幕s

编程小白如何3个月里成为编程高手?做一个合格的程序员? C语言快速入门7小时教程 1.1 C语言介绍(C语言快速入门教程6小时) 1.4 C程序结构(C语言快速入门教程6小时) 2.1 变量、类型和格式化输出(C语言快速入门教程6小时) 2.2 变量、类型和格式化输入(C语言快速入门教程6小时) 2.3 运算符(C语言快速入门教程6小时) 5 函...

解剖深度学习原理、C++17从入门到精通、Python3从入门到实战的勘误

Errors in my books

解剖深度学习原理-从0编写深度学习库 C++17从入门到精通 Python3从入门到实战 刊物github项目 https://github.com/hwdong-net/BookErrata,欢迎热心读者参与