Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6679509
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T04:22:03+00:00 2026-05-26T04:22:03+00:00

I need to build a partial Inverted Index . Something like: l = {{x,

  • 0

I need to build a partial Inverted Index. Something like:

l = {{x, {h, a, b, c}}, {y, {c, d, e}}}
iI[l]
(*
-> {{a, {x}}, {b, {x}}, {c, {x, y}}, {d, {y}}, {e, {y}}, {h, {x}}}
*)

I think it is pretty clear what it does. In the input list, the {x, y …} are unique, while the {a, b, c, ..} are not. The output ought to be ordered by #[[1]].

Right now, I am doing this:

iI[list_List] := {#, list[[Position[list, #][[All, 1]]]][[All, 1]]} & /@ 
                     (Union@Flatten@Last@Transpose@list)

But it looks too convoluted for such an easy task, seems too slow, and I should be able to cope with Legion.

A test drive to compare your results:

words = DictionaryLookup[];
abWords = DictionaryLookup["ab" ~~ ___];
l = {#, RandomChoice[abWords, RandomInteger[{1, 30}]]} & /@ words[[1 ;; 3000]];
First@Timing@iI[l]
(*
-> 5.312
*)

So, any ideas for an speedup?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T04:22:03+00:00Added an answer on May 26, 2026 at 4:22 am

    Seems a classic task for Reap–Sow (improvement in the final version due to @Heike):

    iI[list_] := Sort[Reap[Sow @@@ list, _, List][[2]]] 
    

    Then,

    iI[l]
    
    {{a, {x}}, {b, {x}}, {c, {x, y}}, {d, {y}}, {e, {y}}, {h, {x}}}
    

    and

    In[22]:= 
    words=DictionaryLookup[];
    abWords=DictionaryLookup["ab"~~___];
    l={#,RandomChoice[abWords,RandomInteger[{1,30}]]}&/@words[[1;;3000]];
    First@Timing@iI[l]
    Out[25]= 0.047
    

    EDIT

    Here is an alternative version with a similar (slightly worse) performance:

    iIAlt[list_] :=
       Sort@Transpose[{#[[All, 1, 2]], #[[All, All, 1]]}] &@
               GatherBy[Flatten[Thread /@ list, 1], Last];
    

    It is interesting that Reap – Sow here gives an even slightly faster solution than the one based on structural operations.

    EDIT 2

    Just for an illustration – for those who prefer rule-based solutions, here is one based on a combination of Dispatch and ReplaceList:

    iIAlt1[list_] :=
       With[{disp = Dispatch@Flatten[Thread[Rule[#2, #]] & @@@ list]},
           Map[{#, ReplaceList[#, disp]} &, Union @@ list[[All, 2]]]]
    

    It is about 2-3 times slower than the other two, though.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to build a feature like most of the banks use. Where.. if
This I'm trying for transfer my current Apache/Modperl site to Starman, and need build
I need to build app with user messages (dialogs). I've solved this problem by
I need to build a push system in django, basicly its function is to
I need to build a keystore with all the needed SSL certificates to make
I need to build some client side code which follows this use case: An
I need to build a multidimensional array from records retrieved from my database. Here
I need to build a configuration panel in the Plone control panel that store
I need to build a primary key consisting of 3 sections. The first section
I need to build a dynamic linq query with or operators. I have seen

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.