5th

5th-Python基础语法

###############################################################################交互式编程交互式编程不需要创建脚本文件,是通过 Python 解释器的交互模式进来编写代码。linux上你只需要在命令行中输入 Python ......
语法 5th-Python 基础 Python 5th

【C】 Primer Plus 5th Edition 阅读笔记

一. Getting Ready 1. ANSI C(C89) and ISO C(C90) are essentially the same standard. 2. #include<>, 预处理指令, include 等同于在当前位置复制和粘贴代码。它的存在是为了方便的分享公共代码。 3. s ......
Edition 笔记 Primer Plus 5th

C++ Primer 5th 阅读笔记:字符串,vector 和数组

# 前言 C++ 定义了丰富的抽象数据类型。 `string` 支持变长字符串。 `vector` 支持变长集合。 迭代器用于访问容器中的元素,比如,`string` 中的字符和`vector` 中的元素。 `string` 和 `vector` 都基于更加原始的数组类型。 # 使用 using 声 ......
数组 字符串 字符 笔记 Primer

C++ Primer 5th 阅读笔记:变量和基本类型

一些语言的公共特性 内建类型,如整型,字符型等; 变量,为值绑定的一个名字; 表达式和语句,操作值。 分支和循环,允许我们条件执行和重复执行; 函数,定义抽象计算单元。 扩展语言的方式 自定义类型; 标准库。 本章重点 学习语言的基本知识和标准库。 内建类型; 简要介绍自定义类。 类型 定义了数据的 ......
变量 类型 笔记 Primer 5th

C++ Primer 5th Edition, Chapter 2, Solutions

Exercise 2.1 Questions What are the differences between int, long, long long, and short? Between an unsigned and a signed type? Between a float and a ......
Solutions Edition Chapter Primer 5th

5th

浅谈递归 经典问题 斐波那契数列 1 1 2 3 5 8 13 21 ..... ai=a(i-1)+a(i-2); 其实递归问题都可以想象成树状图 #include <iostream>using namespace std;int fun(int i);//古典的斐波那契数列 //兔子 每三个月 ......
5th th

RealWorld CTF 5th ShellFind 分析

前言 RealWorld CTF 5th 里的一道iot-pwn,根据真实设备固件改编而成,觉得题目贴近iot实战且很有意思,故在此记录一下复现过程。 题目分析 题目描述 Hello Hacker. You don't know me, but I know you. I want to play ......
RealWorld ShellFind CTF 5th th
共7篇  :1/1页 首页上一页1下一页尾页