题解列表
----------------------------------在校门口挖吖挖+++++++++++++++++++++
摘要:解题思路:无注意事项:无参考代码:#include<stdio.h>
/*
用 1 表示树,
用 0 表示是被挖走,即坑。
*/
int main()
……
----------------杨辉三角------------woc--------杨辉三角-----------woc---------卧槽
摘要:解题思路:无注意事项:无参考代码:#include <stdio.h>
int main() {
int n;
while (~scanf("%d", &n)){
int nu……
~~~~~~~~~~~~~~~可爱的津津乐道+++++++++++
摘要:解题思路://通过数组来存放数据,然后再拿来比较注意事项://如何判断那一天最不高兴参考代码:#include<stdio.h>
int main()
{
int a[8]={[0]=0……
++++++++++++++++++++ 0基础学IT就来黑喵程序员之向量点积的计算 +++++++++++++++++++++
摘要:解题思路:注意事项://x轴与y轴的方向选取参考代码:#include<stdio.h>
int main()
{
int n;
scanf("%d", &n);
i……
数据结构-有序线性表的有序合并(C语言,只用30行)
摘要:```c
#include
#include
int link(int a[],int n);
int link(int a[],int n){//该函数是用来将数组数据存入的
……
1673: 数据结构-集合union(结构体数组解决)
摘要:本题需要看清楚题目给的输入和输出。
题目的输入为
**5 1 5 2 6 3
3 1 7 9
1 3
2 2 7
4 2 5 1 4
4 1 2 4 5**
输出为
**1 5 2 ……
————派大星的极致运算————————之整数去重复&m
摘要:解题思路://1号数组存放读入数据
//2号数组存放不重复数组
//通过循环遍历进行比较看是否有重复注意事项://无参考代码:#includeint main()
{
int n;
……