zsh-workers
 help / color / mirror / code / Atom feed
From: Michael Hwang <michael.a.hwang@gmail.com>
To: Andrey Borzenkov <arvidjaar@gmail.com>
Cc: zsh-workers@zsh.org
Subject: Re: LinkList implementation
Date: Mon, 1 Mar 2010 13:00:56 -0500	[thread overview]
Message-ID: <22a0ef081003011000o36e85e27id29136a793347f8c@mail.gmail.com> (raw)
In-Reply-To: <201002281206.53953.arvidjaar@gmail.com>

On Sun, Feb 28, 2010 at 4:06 AM, Andrey Borzenkov <arvidjaar@gmail.com> wrote:
> On Sunday 28 of February 2010 01:33:24 Michael Hwang wrote:
>> In the process of writing a new builtin, I discovered an oddity of
>> zsh's implementation of LinkList, which is a doubly linked list.
>>
>> LinkList alist = newlinklist();
>> LinkNode node;
>> for (node = lastnode(alist); node; decnode(alist)) {
>>      ((SomeStructPointer) getdata(node))->someField;
>> }
>>
> BTW decnode applies to node, not list - it should be decnode(node)

Right, that's another typo on my part.

>> Since no nodes have been added to the LinkList, one would expect the
>> body of the loop to not run at all.
>
> Well, you have to accept that and use another termination condition,
> like e.g. in zle_hist.c:isearch_newpos():
>
>        for (node = lastnode(matchlist);
>             node != (LinkNode)matchlist; decnode(node)) {
>
> For the sake of purity this actually should be
>             node != &matchlist->node
>
> The games linklist.c plays are really daunting ... but to change it now
> you have to carefully go through all of code to adjust snippets like
> above.

I solved my problem by simply reversing the direction I added on to
the LinkList, and therefore the direction I walked through it. I'll
see if I can't make the LinkList implementation simpler and more
intuitive. These "gotcha!"'s are a bit annoying.

Michael Hwang


  reply	other threads:[~2010-03-01 18:01 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-02-27 22:33 Michael Hwang
2010-02-27 22:45 ` Michael Hwang
2010-02-28  9:06 ` Andrey Borzenkov
2010-03-01 18:00   ` Michael Hwang [this message]
2010-03-01 18:12     ` Peter Stephenson
2010-03-06  3:48       ` [PATCH] Added LinkList documentation to linklist.c Michael Hwang
2010-03-07 21:36         ` Peter Stephenson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=22a0ef081003011000o36e85e27id29136a793347f8c@mail.gmail.com \
    --to=michael.a.hwang@gmail.com \
    --cc=arvidjaar@gmail.com \
    --cc=zsh-workers@zsh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).