ThreadSafe链表实现

发布于 2024-11-05 06:51:23 字数 1104 浏览 0 评论 0原文

我知道链表不是线程安全的,在工作中我被要求编写一个简单的线程安全链表。

由于我不会经历的各种复杂情况,我不能简单地包装 LinkedList,而是需要编写 LinkedList 的实现,

我猜我需要这个,但如何才能以线程安全的方式实际实现枚举器(对于 linedlist)?

    public class LinkedlistNode
    {
        private LinkedlistNode next;
        private T item;
        /// <summary>
        /// Constructor for a new LinklistNode
        /// </summary>
        /// <param name="node">The node item to create</param>
        public LinkedlistNode(T node)
        {
            next = null;
            item = node;
        }
        /// <summary>
        /// Shows the next item in the collection (or shows null for the the last item)
        /// </summary>
        public LinkedlistNode Next
        {
            get { return next; }
            set { next = value; }
        }
        /// <summary>
        /// The contents of the list
        /// </summary>
        public T Item         
        {             
            get { return item; }             
            set { item = value; }         
        }            
    }

I know that the linkedlist is not threadsafe and at work I ve been asked to write a bare bones thread safe linkedlist.

Because of various complications which I wont go through I cannot simply wrap a LinkedList but need to write an implementation of a LinkedList

I am guessing I need this but how can I actually implement an enumerator (for the linedlist) in a thread safe way?

    public class LinkedlistNode
    {
        private LinkedlistNode next;
        private T item;
        /// <summary>
        /// Constructor for a new LinklistNode
        /// </summary>
        /// <param name="node">The node item to create</param>
        public LinkedlistNode(T node)
        {
            next = null;
            item = node;
        }
        /// <summary>
        /// Shows the next item in the collection (or shows null for the the last item)
        /// </summary>
        public LinkedlistNode Next
        {
            get { return next; }
            set { next = value; }
        }
        /// <summary>
        /// The contents of the list
        /// </summary>
        public T Item         
        {             
            get { return item; }             
            set { item = value; }         
        }            
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南城追梦 2024-11-12 06:51:23

好的开始。首先,我将通过包含类似于 Next 的 Previous 属性来双重链接该列表。

使链表成为线程安全的主要问题是,与索引集合不同,最多必须同时锁定三个对象才能执行添加和删除操作。例如,如果另一个线程正在枚举列表,则这会增加死锁的可能性;添加/删除线程需要锁定第四个节点才能删除第五个节点,而枚举线程已经锁定了第四个节点,需要锁定第五个节点。单链表也会有同样的问题,因为该算法需要另一个枚举顶部确定“前一个”节点,这最终会阻止尝试到达第四个项目,该项目已经被第一个枚举器锁定等待到达第五项。

我想有一个大问题要问:您究竟需要如何添加和删除项目?如果此实现将用作堆栈或队列后面的集合,则使其成为线程安全变得更加容易,因为不允许枚举列表,并且当前在列表中的节点中,只有端点节点(一个用于堆栈,两个用于队列)在添加/删除时需要锁定,除非堆栈或队列只有一项,否则锁定这些节点只会阻止其他线程尝试添加或删除。

如果这是一个完整的链表实现,在导航到任何项目以及从任何位置添加和删除方面需要与列表类似的功能,那么我认为最好的选择是将节点隐藏在包装器后面,该包装器将在执行任何操作之前锁定自身操作,就像 Interlocked 对整数类型所做的那样。无论如何,这都不是一种“细粒度”的方法。任何想要对列表执行任何操作的线程都必须等待轮到它。当尝试允许多个线程同时访问时,出现死锁的机会太多。

对于没有死锁的细粒度、线程安全锁定的唯一希望是始终以枚举列表的相同顺序获取锁,并且只允许在一个方向上进行迭代。基本上,这需要您隐藏双向链表的“前一个”节点,并允许节点获取其他节点上的“持久”锁。

Good start. I would doubly-link the list, first of all, by including a Previous property similar to Next.

The major problem with making a linked list thread-safe is that, unlike an indexed collection, there are up to three objects that must be locked at the same time to perform adds and deletes. This increases the likelihood of deadlocks if, for instance, another thread is enumerating through the list; the add/remove thread needs to lock the fourth node to delete the fifth node, while the enumerating thread has already locked the fourth item and needs to lock the fifth. A singly-linked list would have the same problem, because that algorithm would require another enumeration top determine the "previous" node, which would end up blocked trying to get to the fourth item which is already locked by the first enumerator waiting to get to the fifth item.

I guess there's a big question to be asked: how exactly do you need to add and remove items? If this implementation will be used as the collection behind a Stack or Queue, it becomes MUCH easier to make it thread-safe, as enumerating the list will not be allowed, and of nodes currently in the list, only the endpoint node(s) (one for a Stack, 2 for a Queue) need to be locked when adding/removing, and unless the stack or queue only has one item, locking those nodes will only block other threads attempting to add or remove.

If this is a full linked list implementation, requiring similar functionality to a List in terms of navigating to any item and adding and removing from anywhere, then I think your best bet is to hide the nodes behind a wrapper that will lock itself before performing any operation, much like Interlocked does with integral types. This is not a "fine-grained" approach by any means; any thread that wants to do anything to the list will have to wait its turn. There are just too many chances for deadlocks when trying to allow multiple threads simultaneous access.

Your only hope for fine-grained, thread-safe locking without deadlocks is to always acquire locks in the same order the list will be enumerated, and to only allow iteration in one direction. Basically, that requires you to hide the "Previous" node of a doubly-linked list, and allow nodes to acquire "persistent" locks on other nodes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文