1014题阶乘求和--答案错误 摘要:1014题阶乘求和--答案错误首先 0!=1,不是0,所以5的结成求和结果是154,不是153。1014题阶乘求和的代码如下。 long long Sn = 1,Idle=1;是防止出现0!=0的错误…… 文章列表 2024年05月08日 0 点赞 3 评论 186 浏览 评分:0.0
Vector2 结构体模版 c++ 版本 摘要:# Vector2 结构体 Vector2 结构体定义了一个二维向量,包含了常见的向量运算和功能。在用于计算一些二维几何运算的题目中非常常见,常用的游戏引擎或者带有空间计算的库基本都会包含以下的一些…… 文章列表 2024年05月08日 0 点赞 0 评论 244 浏览 评分:0.0
1004题,母牛的故事【递归】 摘要:实在是不知道错在哪里,得分为0?递归函数和它的定义都有了。函数调用也用了。0<n<55也判断了。错哪里了??我运行码云模拟结果是对的啊。求助大神。#include<stdio.h>int cow(in…… 文章列表 2024年05月09日 0 点赞 0 评论 183 浏览 评分:0.0
图的邻接表创造及遍历输出 摘要:#include<iostream>using namespace std;#define MVNum 100#define MaxInt 32767//代表无穷大#define MVNum 100/…… 文章列表 2024年05月11日 0 点赞 0 评论 195 浏览 评分:0.0
二叉树操作 摘要:#includeusing namespace std; typedef struct BiTNode//树节点 { int data;//TElemType struct BiT…… 文章列表 2024年05月11日 0 点赞 0 评论 148 浏览 评分:0.0
哈弗曼树的创建 摘要:#icnlude<iostream> using namespace std;//每次都从权值中重新挑选最小的两位 typedef struct { int weight;//权值 …… 文章列表 2024年05月13日 0 点赞 0 评论 148 浏览 评分:0.0
1023[编程入门]选择排序 这两种方法哪个好? 摘要:1023 [编程入门]选择排序目前知道两种方法。一种是交换数组元素,一种是选择数组元素。本质上都是实现的数组元素交换。但是第二种方法数组元素只交换了10次。是第二种速度更快吗?第一种方法:我自己…… 文章列表 2024年05月13日 0 点赞 0 评论 201 浏览 评分:0.0
线性表顺序表 摘要:#include<iostream> using namespace std; #define MAXSIZE 1000000 typedef struct { int *elem; …… 文章列表 2024年05月15日 0 点赞 0 评论 128 浏览 评分:0.0
两个链表合并 摘要:#include <stdio.h> typedef struct LNode{ int data; struct LNode* next; }LNode,*linkList; vo…… 文章列表 2024年05月15日 0 点赞 0 评论 164 浏览 评分:0.0
两个链表合成2 摘要:#include <stdio.h>typedef struct LNode{ int data; struct LNode* next;}LNode,*linkList;void initList(…… 文章列表 2024年05月15日 0 点赞 0 评论 128 浏览 评分:0.0