从后面移动,并保存消失的后面
摘要:解题思路:#include<stdio.h>
int main(void)
{
int i, j, n, a[100], move;
scanf("%d", &n);
……
自定义函数之字符串反转
摘要:解题思路:这道题可以使用数组或者链表来做,我采用的循环链表的方式注意事项:参考代码:typedef struct LinkT{ int num; s……
自定义函数之数字后移
摘要:解题思路:注意事项:参考代码:n=int(input())arr=list(map(int,input().split()))a&n……
1046:使用万能头文件+指针,简单易懂
摘要:```cpp#include //使用万能头文件,竞赛用着快,写平常的程序不要用using namesapce std;void RemoveArray(int a[],int* b,in……