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 7978405
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T09:29:10+00:00 2026-06-04T09:29:10+00:00

I have been trying to solve this problem all day but haven’t got any

  • 0

I have been trying to solve this problem all day but haven’t got any solution, so could you please help me?
Here is the problem description:
The Program should be able to display the bread crumb trail for a given
Category/SubCategory.
Ex:
Input : Public Relations
Output : Business & Finance >> Advertising & Marketing >> Public Relations.

Here Business & Finance is the primary category, Advertising & Marketing is its sub category and public relations is sub category of Adv & marketing.

I thought about implementing it using recursion, but i am not quite sure how to do it.

Thanks,
Jimmy

  • 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-06-04T09:29:11+00:00Added an answer on June 4, 2026 at 9:29 am

    Assuming it is plain Ruby you could do something like this:

    class Category
      def initialize name, parent = nil
        @name = name 
        @parent = parent
      end
    
      def display
        @parent ? "#{@parent.display} >> #{@name}" : name
      end
    
      def name
        @name
      end
    end
    

    and use it like so

    1.9.2p320 :046 > c = Category.new "Parent"
     => #<Category:0x000001009c46d0 @name="Parent", @parent=nil> 
    1.9.2p320 :047 > sub = Category.new "Sub", c
     => #<Category:0x000001009bf860 @name="Sub", @parent=#<Category:0x000001009c46d0 @name="Parent", @parent=nil>> 
    1.9.2p320 :048 > sub.display
     => "Parent >> Sub" 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been trying to solve this problem all day, I googled a lot,
I have been trying to solve this problem for a while, but couldn't with
I've been trying to solve this problem all day, and I've read some conflicting
I've been trying to solve this problem for a couple of hours but I
Background All day long I've been trying to solve a problem, I read all
I have been trying to solve this problem for three days now, it's really
I have been searching the internet for days trying to solve this problem. I
I have a tough time trying to solve this problem. I have been at
I have an interesting problem here I've been trying to solve for the last
I have been trying to solve a programming problem, one of the modules of

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.