Python Forum
merging sublist into single list in python
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
merging sublist into single list in python
#9
(Mar-22-2019, 07:10 PM)snippsat Wrote: Just to use yield from
That isn't as efficient as it may look, when compared to the solution with an explicit stack. In this elegant-looking solution, for deep nesting, Python will keep a stack of generators and when you want to get the "next" value you'll have to start at the "bottom" of the stack, work your way to the top, and then return the value back through that stack of generators.

The explicit stack solution is linear time, but iterating over that generator would be more like quadratic (the true complexity is more involved, but I think "quadratic" describes the problem here well enough).

Also, the OP doesn't appear to need arbitrary nesting :)
Reply


Messages In This Thread
RE: merging sublist into single list in python - by micseydel - Mar-22-2019, 11:46 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  J2534 Python Can Bus merging natezoom 0 730 May-01-2023, 10:37 PM
Last Post: natezoom
  python sql query single quote in a string mg24 1 1,104 Nov-18-2022, 08:01 PM
Last Post: deanhystad
  python Multithreading on single file mg24 3 1,786 Nov-05-2022, 01:33 PM
Last Post: snippsat
  Use one list as search key for another list with sublist of list jc4d 4 2,187 Jan-11-2022, 12:10 PM
Last Post: jc4d
Question Sublist/ Subarray into string Python SantiagoPB 2 2,160 Apr-23-2021, 07:03 PM
Last Post: SantiagoPB
  Parse String between 2 Delimiters and add as single list items lastyle 5 3,434 Apr-11-2021, 11:03 PM
Last Post: lastyle
  convert List with dictionaries to a single dictionary iamaghost 3 2,886 Jan-22-2021, 03:56 PM
Last Post: iamaghost
  How to append multiple <class 'str'> into a single List ahmedwaqas92 2 2,363 Jan-07-2021, 08:17 AM
Last Post: ahmedwaqas92
  Undo interation to make a single list? DustinKlent 2 2,204 Nov-29-2020, 03:41 AM
Last Post: DustinKlent
  unique (single) value in dict (or list) 3Pinter 5 2,509 Mar-27-2020, 12:55 PM
Last Post: 3Pinter

Forum Jump:

User Panel Messages

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