-
20240630 C++ 多维数组申请
二维数组 123456789101112131415161718192021222324252627282930313233343536373839#include <iostream>using namespace std; int ... -
20240629 测试
相关问题 如何编写测试用例 -
20246028 Hello-algo read
前言 第一遍看到啥写啥 迭代递归 递 归 分治 栈、递归转迭代 12345678910111213141516171819/* 使用迭代模拟递归 */int forLoopRecur(int n) { // 使用一... -
20240627 处理超大文件方案
如何读取和处理和输出一个拥有超多数据的文件 C++提供了一些用于读写大文件的库和技术,例如: 使用fstream库:C++标准库中的fstream库提供了对文件的读写操作。可以使用ifstream类进行文件的读取,使用ofstream类进行文件的... -
20240627 武汉面试
Here's something encrypted, password is required to continue reading. -
20240627 寻找数组中第二大的数
题目:求数组中第二大的数 我的思路 一个一个去比较 遍历一遍 两个变量 如果数组的长度大于2, 就分别放进max,smax中, 放进去开始一个一个往后看 m[i]先和max比较,m[i]最大进行处理 如果m[i]不是最大,则smax进行比较和... -
20240627 思考
Here's something encrypted, password is required to continue reading. -
20240000 嵌入式八股
数据所在内存大小 double 8 sizeof(指针) 4 如:int* 4,char *4,double * 4。。。 char ch[]={“zhang”}; sizeof(ch)=6 12341 void Func(char a[100]... -
20240627 基于boost的文件传输系统
Here's something encrypted, password is required to continue reading. -
20240627 嵌入式开发
基本开发流程 调试基本工具