Python Forum
Looking for data/info on a perticular data-proccesing problem.
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Looking for data/info on a perticular data-proccesing problem.
#5
Looks like you're looking for topological sorting. If you search for that term, you can find lots of info on it, including algorithms and modules.

import toposort
from collections import defaultdict

data = [
    ["bats", "eagles", "aligators"],
    ["bats", "cats", "eagles"],
    ["cats", "dogs", "eagles"],
]

ordering = defaultdict(set)
for chunk in data:
    for index in range(len(chunk) - 1):
        ordering[chunk[index + 1]].add(chunk[index])

print(toposort.toposort_flatten(ordering))
Output:
['bats', 'cats', 'dogs', 'eagles', 'aligators']
MvGulik likes this post
Reply


Messages In This Thread
RE: Looking for data/info on a perticular data-proccesing problem. - by bowlofred - Apr-28-2021, 04:37 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Help with to check an Input list data with a data read from an external source sacharyya 3 671 Mar-09-2024, 12:33 PM
Last Post: Pedroski55
  Take data from web page problem codeweak 5 1,097 Nov-01-2023, 12:29 AM
Last Post: codeweak
  Input network device connection info from data file edroche3rd 6 1,320 Oct-12-2023, 02:18 AM
Last Post: edroche3rd
  What is all the info in the info window in Idle? Pedroski55 3 859 Jul-08-2023, 11:26 AM
Last Post: DeaD_EyE
  Matplot / numpy noisy data problem the57chambers 1 795 Feb-09-2023, 03:27 AM
Last Post: deanhystad
  Write sql data or CSV Data into parquet file mg24 2 2,662 Sep-26-2022, 08:21 AM
Last Post: ibreeden
  Load multiple Jason data in one Data Frame vijays3 6 1,794 Aug-12-2022, 05:17 PM
Last Post: vijays3
  Django: Adding Row Data To Existing Model Instance Question/Problem. Steven_Pinkerton 1 1,362 Aug-09-2022, 10:46 AM
Last Post: Addweb
  Issue in changing data format (2 bytes) into a 16 bit data. GiggsB 11 2,949 Jul-25-2022, 03:19 PM
Last Post: deanhystad
  Adding shifted data set to data set xquad 3 1,638 Dec-22-2021, 10:20 AM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020