链表(王道课后算法题)C++ (acwing)持续更新 摘要:# 我们首先来规范一下画图标准```struct Node{ int val; Node* next; Node() : next(NULL){} …… 文章列表 2025年01月12日 2 点赞 0 评论 75032 浏览 评分:10.0
L1-006连续因子 摘要://暴力,不开longlong也无妨注意取因子的方式和范围#include<iostream>usingnamespacestd;…… 文章列表 2025年01月04日 0 点赞 0 评论 34719 浏览 评分:0.0
高精度算法(2~36进制)加法器(不好写) 摘要: #include//整个下午献给了高精度 #include #include #define m 10000 int main(void) {…… 文章列表 2025年01月01日 0 点赞 0 评论 11154 浏览 评分:0.0
高精度算法--斐波那契数列(不用二维数组)与加法相似 摘要: #include #define m 10000 int main(void) { int a[m], b[m], c[m], i, j, lc…… 文章列表 2025年01月01日 2 点赞 0 评论 30647 浏览 评分:0.0
高精度乘法(比减法简单多了) 摘要: #include #include int main(void) { char x[10000], y[10000]; int…… 文章列表 2025年01月01日 0 点赞 0 评论 6907 浏览 评分:0.0
高精度减法(与加法相似)借位与交换 摘要: #include #include void swap(char * a,char * b); void exchange(int * a,int * b); …… 文章列表 2025年01月01日 0 点赞 0 评论 35466 浏览 评分:0.0
高精度加法(学习的记录) 摘要://2025元旦快乐----2024.12.31--23:46 //1.将数作为字符读进字符串里 //2.逆序存放到整数数组中 //3.竖式加法注意+=与+ //4.逆序输出 #includ…… 文章列表 2024年12月31日 5 点赞 0 评论 125664 浏览 评分:0.0
大家好,又见面了 摘要:C 语言:编程世界的基石引言在计算机编程的浩瀚宇宙中,C 语言犹如一颗璀璨且永恒的恒星,散发着独特而持久的光芒。自其诞生以来,C 语言凭借其强大的功能、高效的性能以及对硬件的直接操控能力,成为了众多程…… 文章列表 2024年12月25日 1 点赞 0 评论 17482 浏览 评分:0.0
本周新学且认为有意义的c语言 摘要:数位之和#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<stdlib.h>#include<string.h>#define N 10…… 文章列表 2024年12月22日 0 点赞 0 评论 4697 浏览 评分:0.0
1018 n项之和 c++代码参考 摘要:#include <iostream> #include <iomanip> using namespace std; int main() { int N; cin >…… 文章列表 2024年12月20日 0 点赞 0 评论 40084 浏览 评分:0.0