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

📄 levin.cpp

📁 用C开发的莱文森算法
💻 CPP
字号:
// levin.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"

#include "stdlib.h"
#include "math.h"
#include "levin.h"

int main(int argc, char* argv[])
{


	int i;
	static double r[6]={6,5,4,3,2,1};
	static double b[6]={11,9,9,9,13,17};
	static double x[6];

    i=levin(r,b,6,x);

    if(i>0)
	{ for(i=0;i<6;i++)
	  printf("%lf\n",x[i]);
	}



	printf("Hello World!\n");
	return 0;
}

⌨️ 快捷键说明

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