最新 最热

基础练习特殊的数字

本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>using namespace std;int main(){for(int i=1;i<10;i++){for(int j=0;j<10;j++){for(int k=0;k<......

2022-06-28
0

第十周算法训练Anagrams问题

本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>using namespace std;bool judge(char temp,char arr2[100]){int j=0;while(arr2[j]!=&#x27;&#x27;){if(temp==......

2022-06-28
0

第十周算法训练出现次数最多的整数

本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>#include<cstring>using namespace std;int main(){int n,arr[22],arr2[22][2];memset(arr2,0,sizeof(arr......

2022-06-28
0

第四周_历届试题_危险系数

本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>#include<cstring>using namespace std;int n,m,x,y,sum=0;int array[1100][1100],beUsed[1100];void searc......

2022-06-28
0

第四周_算法提高_01背包

本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream> #include<cstring>using namespace std;int array[210][3];int array1[210][2];int n,m,MAX=0;int w=0,v=......

2022-06-28
0

第四周_算法提高_9-3摩尔斯电码

本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>#include<cstring>using namespace std;void print(char ch1[4]){char ch2[26][4];ch2[0][0]=&#x27;*&#x27;;ch2[0][......

2022-06-28
0

第四周_算法提高_约数个数

本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>using namespace std;int main(){int n,sum=0;cin>>n;for(int i=1;i<=n;i++){if(n%i==0){sum++;......

2022-06-28
0

第四周_算法训练_删除数组零元素

本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>#include<vector>using namespace std;int CompactIntegers(vector<int> vec,int len){int sum=0;for(int......

2022-06-28
0

第一周_算法训练_前缀表达式

本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>#include<string>#include<cstring>using namespace std;int add(int obj1,int obj2){int obj3;obj3=obj......

2022-06-28
0

方格分割

本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>#include<cstring>using namespace std;int dx[]={0,0,1,-1};int dy[]={1,-1,0,0};int arr[7][7];void dfs......

2022-06-28
0