数组的插入,删除---线性表的插入,删除


数组的插入#include <iostream>using namespace std;int main(void) { char arr[5] = {'a','b','c','d','e'};

选择排序使用


#include <iostream>using namespace std;void select_sort(int a[],int length){ for(int i = 0;i<=length-1;i++){ for(int j = i+1;j<=

数组翻转题解


#include <iostream>using namespace std;void reverse(int a[],int size);int main(void) { int n,size; cin >> n >> size; int a[

最小公约数题解


#include <iostream>using namespace std;int lcm(int a,int b);int main(void) { int a,b; cin >> a >> b; int m = lcm(a,b); c

最大公约数-题解(语法题)


更相减损术https://baike.baidu.com/item/更相减损术/449183c++ 代码#include <iostream>using namespace std;int gcd(int a,int b){ while(a != b) { if (a

求n的阶乘


#include <iostream>using namespace std;int fact(int n) { int m = 1; for(int i = 1;i<=n;i++){ m*=i; } cout << m <&

vue项目部署后点击其它页面报404 解决方法


nginx修改添加下面这一句就行了

VSCODE Vue emmet语法失效问题解决


VSCODE Vue emmet语法失效问题解决打开vscode ,进入设置,搜索emmet.include就能看到下面的选项添加两个项即可vue htmlvue-html html

汉诺塔问题--递归


http://c.biancheng.net/algorithm/tower-of-hanoi.htmljava题解public class HannuoiTower {public static void main(String[] args) {Tower tower = new Tower()

递归思想-猴子吃桃问题


题解-猴子吃桃问题猴子吃桃子问题:有一堆桃子,猴子第一天吃了其中的一半,并再多吃了一个!以后每天猴子都吃其中的一半,然后再多吃一个。当到第10天时,想再吃时(即还没吃)发现只有1个桃子了。问题:最初共多少个桃子?思路分析: 逆推day = 10 – > 1 peachday = 9 -->