首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
wp231957的代码贴
→
ABAP
int类型的全排列 含自身重复
#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
/*
* 加1后进位操作
* 用字符串模拟数字的进位操作
*/
void add_one(int *array, int array_len, int radio, int *flow)
{
int i;
for ( i=array_len-1; i>=0; i-- )
{
......................
阅读全部
| 2014年4月23日 08:30
1
wp231957
全部(149)
C语言(143)
C#(2)
Python(2)
Diff(1)
ABAP(1)