题解列表

筛选

1046简简单单

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main() {    int m,n,a[200],i=0,j=0,c=0;    sca……

挺简单的一个题

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){      int n, a,b;       cin>>n;……

[编程入门]链表合并,小白代码

摘要:解题思路:手搓链表,首先输入a,b链表,初始化一个together链表备用。写一个函数minid找到链表中id最小的并返回该结点地址,考察a,b两链表中id最小者,并加入together链表同时修改该……

#C++1870——统计字符

摘要:#include <iostream> #include <cstring> #include <algorithm> using namespace std; int a[26],b[26]……