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

  • Home
  • SEARCH
  • 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 940429
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T21:57:22+00:00 2026-05-15T21:57:22+00:00

Possible Duplicate: [python]: path between two nodes Can anyone point me to some resources

  • 0

Possible Duplicate:
[python]: path between two nodes

Can anyone point me to some resources on how to do this? I’m using networkx as my python library.

Thanks!

  • 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-15T21:57:22+00:00Added an answer on May 15, 2026 at 9:57 pm

    This is based on Alex Martelli’s answer, but it should work. It depends on the expression source_node.children yielding an iterable that will iterate over all the children of source_node. It also relies on there being a working way for the == operator to compare two nodes to see if they are the same. Using is may be a better choice. Apparently, in the library you’re using, the syntax for getting an iterable over all the children is graph[source_node], so you will need to adjust the code accordingly.

    def allpaths(source_node, sink_node):
        if source_node == sink_node: # Handle trivial case
            return frozenset([(source_node,)])
        else:
            result = set()
            for new_source in source_node.children:
                paths = allpaths(new_source, sink_node, memo_dict)
                for path in paths:
                    path = (source_node,) + path
                    result.add(path)
            result = frozenset(result)
            return result
    

    My main concern is that this does a depth first search, it will waste effort when there are several paths from the source to a node that’s a grandchild, great grandchild, etc all of source, but not necessarily a parent of sink. If it memoized the answer for a given source and sink node it would be possible to avoid the extra effort.

    Here is an example of how that would work:

    def allpaths(source_node, sink_node, memo_dict = None):
        if memo_dict is None:
            # putting {}, or any other mutable object
            # as the default argument is wrong 
            memo_dict = dict()
    
        if source_node == sink_node: # Don't memoize trivial case
            return frozenset([(source_node,)])
        else:
            pair = (source_node, sink_node)
            if pair in memo_dict: # Is answer memoized already?
                return memo_dict[pair]
            else:
                result = set()
                for new_source in source_node.children:
                    paths = allpaths(new_source, sink_node, memo_dict)
                    for path in paths:
                        path = (source_node,) + path
                        result.add(path)
                result = frozenset(result)
                # Memoize answer
                memo_dict[(source_node, sink_node)] = result
                return result
    

    This also allows you to save the memoization dictionary between invocations so if you need to compute the answer for multiple source and sink nodes you can avoid a lot of extra effort.

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

Sidebar

Ask A Question

Stats

  • Questions 488k
  • Answers 488k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Like you already indicated yourself you basically need something that… May 16, 2026 at 8:33 am
  • Editorial Team
    Editorial Team added an answer The solution ended being: Apple has_many :oranges, :primary_key => :number… May 16, 2026 at 8:33 am
  • Editorial Team
    Editorial Team added an answer I would expect that to be considered a new request… May 16, 2026 at 8:33 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

No related questions found

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.