码迷,mamicode.com
首页 > Windows程序 > 详细

c# 递归、树状结构

时间:2014-12-22 21:01:54      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:

1、树状结构

            treeView.Nodes.Clear();
            TreeNode tree = new TreeNode();
            tree.Text = "字母";
            treeView.Nodes.Add(tree);

            // tree.Nodes.Add("A");
            TreeNode tree1 = new TreeNode();
            tree1.Text = "汉字";
            treeView.Nodes.Add(tree1);

            TreeNode a = new TreeNode();
            a.Text = "a";
            tree.Nodes.Add(a);
 output: 
  ……字母
  …………a
  ……汉字

2、递归

class Program
    {
        static void Main(string[] args)
        {
            Output(1);
            Console.ReadKey();
        }
        public static void Output(int i)
        {
            Console.WriteLine(i);
            if (i < 3)
            {
                Output(i + 1);
                Console.WriteLine(i);
            }

        }
    }

 

c# 递归、树状结构

标签:

原文地址:http://www.cnblogs.com/bitter-yu/p/4178805.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!