题解列表

筛选

1116: IP判断(python)

摘要:解题思路:1、EOF即为"End of file"缩写2、四个整数中不允许有前导零存在:即当数字长度大于一位时(0是可以的),第一位为0的数都是含有前导零的数参考代码:while True:    t……

链表删除练习

摘要:解题思路:此题用c++解答相对简单便捷,不得不说stl还是牛注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ list<……

链表之节点删除

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

A+B for Input-Output Practice (IV)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int i,n=0; int a[100]={0}; while(ci……

绝对值排序

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){      int n;      while(scanf("%d",&n)!=E……

A+B for Input-Output Practice (IV)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int i,n=0; int a[100]={0}; while(ci……