差之毫厘
要勇敢与坚强
这个作者很懒,什么都没留下…
展开
-
【数据结构】单链表的删除,插入,销毁操作实现
#include <iostream>using namespace std;struct Node{ int data; Node* next;};class Linklist{public: //初始化 void init() { head = new Node; head->next = NULL; len = 0; } void output() { cout << "长度" << len << e.原创 2022-03-16 22:42:30 · 1105 阅读 · 0 评论 -
天梯赛选拔题- L1-8 四个数的平方和 (20 分)
题目:每个正整数都可以表示为最多 4 个非负整数的平方和。比如:5=0^2+0^2+1^2+2^27=1^2+1^2+1^2+2^2对于给定的一个正整数,可能存在多种结果,请你给出字典序最小的一个解。#include <iostream>#include <cmath>using namespace std;int main(){ int a, b, c;//标记 int n;//输入的数 cin >> n; ...原创 2022-03-13 19:30:33 · 79 阅读 · 0 评论 -
【2020年第十一届C/C++ A组第二场蓝桥杯省赛真题】第一题:门牌制作
一个else导致循环无法退出的悲剧。原创 2022-02-24 21:52:52 · 200 阅读 · 0 评论