博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
求排列求组合的实现
阅读量:6587 次
发布时间:2019-06-24

本文共 1875 字,大约阅读时间需要 6 分钟。

引用了@的排列组合类

 

protected void Button1_Click(object sender, EventArgs e)        {            int r = Int32.Parse(intr.Text.Trim());            int[]  arr=new int[6];            int i;            for (i = 0; i < arr.Length; i++)            {                arr[i] = i + 1;            }            //求排列            List
lst_Permutation = web1.PermutationAndCombination
.GetPermutation(arr, r); Response.Write("-----------------------------共有"+lst_Permutation.Count+"种排列方式--------------------------------------------------
"); foreach (int[] str in lst_Permutation) { for (int j = 0; j < r; j++) { Response.Write(str[j]); } Response.Write("
"); } Response.Write("-------------------------------------------------------------------
"); } protected void Button2_Click(object sender, EventArgs e) { int r = Int32.Parse(intr.Text.Trim()); int[] arr = new int[6]; int i; for (i = 0; i < arr.Length; i++) { arr[i] = i + 1; } //求组合 List
lst_Combination = web1.PermutationAndCombination
.GetCombination(arr, r); Response.Write("-----------------------------共有" + lst_Combination.Count + "种排列方式--------------------------------------------
"); foreach (int[] str in lst_Combination) { for (int j = 0; j < r; j++) { Response.Write(str[j]); } Response.Write("
"); } Response.Write("-------------------------------------------------------------------
"); }

输出排列结果。

转载地址:http://gohno.baihongyu.com/

你可能感兴趣的文章
2018“一带一路”阿里巴巴诸神之战全球创客大赛全面启动
查看>>
快轮天才发明家刘峰,上榜福布斯2017年亚洲人物
查看>>
9-51单片机ESP8266学习-AT指令(测试TCP服务器--51单片机程序配置8266,C#TCP客户端发信息给单片机控制小灯的亮灭)...
查看>>
物联网安全形势严峻——除严加管控外别无选择
查看>>
深度学习机器72小时自学国际象棋达到大师水平
查看>>
香港设计师带来仿生机器人,其身体 70% 构造均由3D打印完成
查看>>
探测能源、跨洲安全通信……你所想不到的量子技术!
查看>>
bootstrap16-上下文表格布局
查看>>
不规则物体形状匹配综述
查看>>
自动化设计-框架介绍 TestCase
查看>>
CJ看showgirl已经out!VR体验才是王道
查看>>
postgresql 数组类型
查看>>
Vue+Webpack常见问题(持续更新)
查看>>
栈与递归的实现
查看>>
Manually Summarizing EIGRP Routes
查看>>
spring boot 1.5.4 整合webService(十五)
查看>>
modsecurity(尚不完善)
查看>>
在mac os中设置环境变量
查看>>
获取.propertys文件获取文件内容
查看>>
Redis3.0.5配置文件详解
查看>>