⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 msort.cpp

📁 data structures, algorithms and Application书的源代码
💻 CPP
字号:
// test merge sort

#include <iostream.h>
#include "msort.h" 

void main(void)
{
   int y[10] = {10,7,8,9,4, 2, 3, 6, 5,1};
   MergeSort(y,10);
   for (int i=0; i< 10; i++) cout << y[i] << ' ';
   cout << endl;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -