c 學習隨筆之陣列的插入刪除

2021-08-20 22:19:06 字數 1071 閱讀 1798

陣列的插入 找到要插入的位置 大於它或者小於它的數值的向後移一位或者向前加一位

陣列的刪除 找到刪除的位置 後面的數字向前移位

#include 

using

namespace

std;

int main()}}

cout

<< "排序後"

<< endl;

for(int i=0;icout

<< power[i] << "\t";

}cout

<< endl;

cout

<< "請輸入要插入的數字"

<< endl;

cin >> insertpower;

insertindex=powercount;

//1.找到第乙個比插入數字大的下標位置

for(int i=0;iif(insertpower > power[i])

}//2.從最後乙個元素開始,將數字複製到後乙個元素中

for(int i = powercount -1; i >= insertindex ;i-- )

power[insertindex]=insertpower;

powercount++;

for(int i=0;icout

<< power[i] << "\t";

}double deletepower;

int deleteindex = -1;

cout

<< "請輸入刪除的數字"

<< endl;

cin >> deletepower;

for(int i=0;iif(deletepower==power[i])

}//前移一位

for(int i=deleteindex;i1;i++)

powercount--;

cout

<< "刪除後"

<< endl;

for(int i=0;icout

<< power[i] << "\t";

}return

0;}

Numpy學習之陣列運算隨筆

numpy的學習需要把初中 高中和大學的數學重新學一遍,才能學好 越學越覺得對不起各位數學老師。import numpy as np 一元通用函式 arr np.arange 10 arr1 np.random.randn 8 7print np.sqrt arr np.sqrt 開平方 print...

陣列的刪除與插入

include include int main int count 5 未增加與刪除前陣列的長度 int i 定義迴圈變數 int deleteindex 1 要刪除的陣列下標 int deletenum 要刪除的數字 int insertnum 要插入的數字 printf 請你輸入要刪除的數字 ...

靜態表之整型陣列的插入 刪除 查詢

返回上一級 author 張海拔 update 2014 01 23 link 1 2 author zhanghaiba 3 date 2014 1 23 4 file array.c5 6 a demo shows array data structure7 89 include 10 incl...