【日常】2025年11月复盘&12月规划 - AI科研 编程 读书笔记 - 小竹の笔记本
TimeMaster官网 - AI科研 编程 读书笔记 - 小竹の笔记本
【C++】小竹的C++学习笔记分享 | 78篇体系化文档×4.7 万字(PDF 可下载) - AI科研 编程 读书笔记 - 小竹の笔记本
【人工智能】修改翻译和LaTex论文&遥感模型改进-2025年7月22日人工智能组会总结 - AI科研 编程 读书笔记 - 小竹の笔记本
最新发布第48页

【C】判断回文数

#include <stdio.h> bool fun(int n) { int a = 0; int num = n; while (n > 0) { a = a * 10 + n % 10; n = n / 10; } if (a==num) { return true; } else { return false; } } int main() ...
SmallBamboo的头像 - AI科研 编程 读书笔记 - 小竹の笔记本SmallBamboo2年前
09815

【C】链表节点交换

链表节点交换? 傻呼呼的我在被XZH学长嘲笑用结构体内容交换之后,我下定决心自己研究以下链表节点交换! 以下是我的研究成果 //链表节点交换 void swap(item *pre,item *mid,item *last){ item...
SmallBamboo的头像 - AI科研 编程 读书笔记 - 小竹の笔记本SmallBamboo2年前
012813

【C】一个加载动画

void loading(){    for (int i=0;i<=10;i++){        printf('加载中: [');        for (int j=0;j<i;j++){            printf('█');       }        for (int ...
SmallBamboo的头像 - AI科研 编程 读书笔记 - 小竹の笔记本SmallBamboo2年前
02376

【C】链表从文件初始化函数

节点保存的结构体是这样的: //结构体 //用户名/管理员名与密码 typedef struct User{ char username[20]; char password[20]; struct User *next; }usr; 以下是初始化函数 //初始化链表函数 //...
SmallBamboo的头像 - AI科研 编程 读书笔记 - 小竹の笔记本SmallBamboo2年前
0897

【一个注释】佛祖保佑,永无BUG!

/*                               _ooOoo_                              o8888888o                              88' . '88           ...
SmallBamboo的头像 - AI科研 编程 读书笔记 - 小竹の笔记本SmallBamboo2年前
01639

【C】顺序数组的二分查找

关键函数 int binarySearch(int arr[],int n,int k){ int low=0,mid,high=n-1; while(low<=high){ mid = (low + high)/2; if (k==arr[mid]){ return mid; } if (k<arr[mid]){ high = mid ...
SmallBamboo的头像 - AI科研 编程 读书笔记 - 小竹の笔记本SmallBamboo2年前
039311
高质量付费干货文章