Chinaunix首页 | 论坛 | 博客
  • 博客访问: 180123
  • 博文数量: 43
  • 博客积分: 611
  • 博客等级: 中士
  • 技术积分: 1053
  • 用 户 组: 普通用户
  • 注册时间: 2012-04-02 13:37
文章存档

2015年(3)

2013年(23)

2012年(17)

我的朋友

分类: C/C++

2013-01-03 20:32:06

Problem description:Please list all of the subsets of a known set including the empty set.

My idea: one thinking of the algorithm backtracking is to generate a tree of subset and the condition of an element in the super set for a subset is either on or off.Hence we can specialize the subset tree to a binary tree and we print once when we reach the bottom of the tree each time.It is also easy to write a program.


  1. #include <stdio.h>
  2.   #define MAX 1000
  3.   
  4.   int n=3; //the number of the set elements
  5.   int set[MAX]={1,2,3};
  6.   int count=0;//the number of the subset.
  7.   
  8.   void DFS(int level);
  9.   void print_set();
  10.   
  11.   int main()
  12.   {
  13.       DFS(0);
  14.       return 0;
  15.   }
  16.   
  17.   void DFS(int level)
  18.   {
  19.       if(level==n)
  20.       {
  21.           print_set();
  22.           return ;
  23.       }
  24.       int save=set[level];
  25.       set[level]=0;
  26.       int index=0;
  27.       for(index=0;index<2;index++)
  28.       {
  29.           DFS(level+1);
  30.           set[level]=save;
  31.       }
  32.   
  33.   }
  34.   
  35.   void print_set()
  36.   {
  37.       int index;
  38.       count++;
  39.       printf("%d: {",count);
  40.       for(index=0;index<n;index++)
  41.       {
  42.           if(set[index]!=0)
  43.               printf("%d ",set[index]);
  44.       }
  45.       printf("}\n");
  46.   }

阅读(1363) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~