all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: John Mastro <john.b.mastro@gmail.com>
To: "help-gnu-emacs@gnu.org" <help-gnu-emacs@gnu.org>
Subject: Re: Is there a way to convert a keyboard macro to a string?
Date: Wed, 26 Jul 2017 13:51:23 -0700	[thread overview]
Message-ID: <CAOj2CQQ-aRS66QpeN+gfCa3ifcvyvg95mAcJynM1ikNXcrfaUg@mail.gmail.com> (raw)
In-Reply-To: <86a83rszt1.fsf@zoho.com>

Emanuel Berg <moasen@zoho.com> wrote:
> Yes, constant access time instead of linear.
> Different data structures.
>
> Temporal complexity... or perhaps spacial?
> I don't remember.
>
> But *how* does this happen?

This is off course simplified and just for illustration, but think of
the respective structures like this:

struct vector {
    Lisp_Value *elts;
};

struct cons {
    Lisp_Value car, cdr;
};

A call like (nth n seq) then boils down to something like:

/* Vector - a single array access by index */
return vector->elts[n];

/* Cons */
while (n-- > 0) /* This loop is what makes it O(N) */
    cons = cdr(cons);
return car(cons);

That's how it happens :)

        John



  reply	other threads:[~2017-07-26 20:51 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-26  6:20 Is there a way to convert a keyboard macro to a string? Marcin Borkowski
2017-07-26  6:41 ` Emanuel Berg
2017-07-26  6:43 ` Emanuel Berg
2017-07-26  7:20 ` Héctor Lahoz
2017-07-26  8:52   ` Emanuel Berg
2017-07-26 13:13 ` Stefan Monnier
2017-07-26 16:55   ` Emanuel Berg
2017-07-26 20:22     ` tomas
2017-07-26 20:34       ` Emanuel Berg
2017-07-26 20:51         ` John Mastro [this message]
2017-07-26 23:32           ` Emanuel Berg
2017-07-26 18:18   ` Marcin Borkowski
2017-07-26 18:40     ` Stefan Monnier
2017-07-26 20:38       ` Emanuel Berg
2017-07-27  6:22       ` Marcin Borkowski
2017-07-27 12:54         ` Stefan Monnier
2017-08-08  4:56           ` Marcin Borkowski
2017-08-08  6:32             ` John Ankarström

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=CAOj2CQQ-aRS66QpeN+gfCa3ifcvyvg95mAcJynM1ikNXcrfaUg@mail.gmail.com \
    --to=john.b.mastro@gmail.com \
    --cc=help-gnu-emacs@gnu.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 external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.