insert.cpp
来自「数据结构c++语言描述的源代码」· C++ 代码 · 共 25 行
CPP
25 行
// insert into a sorted array
#include <iostream.h>
template<class T>
void Insert(T a[], int& n, const T& x)
{// Insert x into the sorted array a[0:n-1].
// Assume a is of size > n
int i;
for (i = n-1; i >= 0 && x < a[i]; i--)
a[i+1] = a[i];
a[i+1] = x;
n++; // one element added to a
}
void main(void)
{
int y[15] = {1,2,3,4,5,6,7,8,9,10,0,0,0,0,0};
int n = 10;
int x = 0;
Insert(y,n,x);
for (int i=0; i<n; i++)
cout << y[i] << ' ';
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?