题解列表

筛选

P1094 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>//万能库 using namespace std; int h[10000],l[10000],f[5000][500……

P1095 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> int n,a[100000]; double f[10000][2];//不要忘记doub……

统计字符 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>   #include<algorithm>   #include<stdio.h>   #include<map>   #i……
优质题解

Manchester-数据结构-链表的基本操作

摘要:解题思路:首先思考一下总思路①:结点定义typedef struct node_{ int data; struct node_* next; }*node,Node;②:声明所需的函数……

简单的a+b (C++代码)

摘要:解题思路:注意事项:参考代码:#include "stdafx.h"int main(){ int a, b,c; scanf_s("%d%d",&a,&b); c = a + b; printf("……