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

利用C#的指针编写都一个简单链表

时间:2015-07-06 13:44:15      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:

using System;
 
 namespace UnsafeTest
{
    unsafe struct link
    {
        public int x;
        public link* next;
    }
    class Program
    {
        static unsafe void Main(string[] args)
        {
            int val;
            link* head = stackalloc link[sizeof(link)];
            
            link*q =head;
            for(int i=0;i<=10;i++)
            {
                val = i+100;
                link* temp = stackalloc link[sizeof(link)];
                q->x = val;
                q->next = temp;
                q = temp;
            }
             
            link* t = head;
            while(t->next!=null)
            {
 
                Console.WriteLine(t->x );
                t = t->next;
            }
        }
    }
}

 

利用C#的指针编写都一个简单链表

标签:

原文地址:http://www.cnblogs.com/rinack/p/4623971.html

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