2024年02月的文章

【递归】斐波那契数 - Python AI C++笔记 - 小竹の笔记本

【递归】斐波那契数

#include<iostream> using namespace std; int fib(int n){ if (n<2){ return n; } return fib(n-1) + fib(n-2); } int main(){ int n; cin >> n; cout << fib(n); return 0; } 数...
SmallBamboo的头像 - Python AI C++笔记 - 小竹の笔记本SmallBamboo8个月前
06815
【模拟】旋转矩阵 - Python AI C++笔记 - 小竹の笔记本

【模拟】旋转矩阵

#include<stdio.h> int main(){ int n; scanf('%d',&n); int a[n][n]; int top=0,down=n-1,left=0,right=n-1,count=1; while(count<=n*n){ for (int i=left;i<=right;i++){ a[top]...
SmallBamboo的头像 - Python AI C++笔记 - 小竹の笔记本SmallBamboo8个月前
04510
【模拟】各位相加 - Python AI C++笔记 - 小竹の笔记本

【模拟】各位相加

#include<iostream> using namespace std; int main(){ int num; cin >> num; while(num>9){ int total=0; while(num!=0){ total+=num%10; num/=10; } num = total; total = 0; } cout <&...
SmallBamboo的头像 - Python AI C++笔记 - 小竹の笔记本SmallBamboo8个月前
0646
【模拟】二进制求和 - Python AI C++笔记 - 小竹の笔记本

【模拟】二进制求和

#include <iostream> using namespace std; string addBinary(string a, string b){ string res; int carry = 0;  // 进位 int i = a.size() - 1; int j = b.size() - 1; while(i >= 0 || j...
SmallBamboo的头像 - Python AI C++笔记 - 小竹の笔记本SmallBamboo8个月前
05114
【Python】学生信息管理系统示例 - Python AI C++笔记 - 小竹の笔记本

【Python】学生信息管理系统示例

import os.path  #导入os.path模块 def menm():    #菜单    print('==========================学生信息管理系统==========================')    print('----------------------------...
SmallBamboo的头像 - Python AI C++笔记 - 小竹の笔记本SmallBamboo8个月前
0709
【Python】魔术方法自查 - Python AI C++笔记 - 小竹の笔记本

【Python】魔术方法自查

魔法方法含义基本的魔法方法new(cls[, ...])1. new 是在一个对象实例化的时候所调用的第一个方法 2. 它的第一个参数是这个类,其他的参数是用来直接传递给 init 方法 3. new 决定是否要使用该 i...
SmallBamboo的头像 - Python AI C++笔记 - 小竹の笔记本SmallBamboo8个月前
0605
【人工智能】重磅!近期人工智能原理学习总结 - Python AI C++笔记 - 小竹の笔记本

【人工智能】重磅!近期人工智能原理学习总结

很久之前就认识了Ele实验室这个UP主,也推荐大家去学习,他的视频大多为计算机软硬件科普,技术力和视频质量可谓十分强悍。 看到他有一个叫“小白也能听懂的人工智能原理”的课程,于是我就在网...
SmallBamboo的头像 - Python AI C++笔记 - 小竹の笔记本SmallBamboo8个月前
09111
【C++】高精度减法 - Python AI C++笔记 - 小竹の笔记本

【C++】高精度减法

#include <iostream> using namespace std; int main(){ string s1,s2; cin >> s1; cin >> s2; int a1[210]={0}; int a2[210]={0}; int a3[210]={0}; char flag='+'; if (s1.size()<s2.si...
SmallBamboo的头像 - Python AI C++笔记 - 小竹の笔记本SmallBamboo8个月前
04913
【C++】高精度加法 - Python AI C++笔记 - 小竹の笔记本

【C++】高精度加法

#include <iostream> using namespace std; int main(){ string s1,s2; //设置最大位数 int a1[210],a2[210],a3[210]={0}; //cin >> s1; //cin >> s2; getline(cin,s1); getline(cin,s2); //...
SmallBamboo的头像 - Python AI C++笔记 - 小竹の笔记本SmallBamboo8个月前
0418
【C++】过河卒问题 - Python AI C++笔记 - 小竹の笔记本

【C++】过河卒问题

无马情况 #include <iostream> // 定义棋盘大小 #define MAXSIZE 30 using namespace std; int main(){ int a[MAXSIZE][MAXSIZE]={0}; int n,m; // n,m为B点的坐标,A点默认为(0,0) cin >> n...
SmallBamboo的头像 - Python AI C++笔记 - 小竹の笔记本SmallBamboo8个月前
06914
【C++】使用cpp-httplib库实现http通讯 - Python AI C++笔记 - 小竹の笔记本

【C++】使用cpp-httplib库实现http通讯

下载 GitHub:https://github.com/yhirose/cpp-httplib 仅需下载头文件httplib.h后导入至项目中即可,非常简单 服务端 现在以我的个人通讯录管理系统项目中的云端备份功能为例,简单的讲解这个...
SmallBamboo的头像 - Python AI C++笔记 - 小竹の笔记本SmallBamboo8个月前
09411