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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T05:45:03+00:00 2026-05-13T05:45:03+00:00

Consider this: set A: 1 2 3 4 set B: 3 4 5 6

  • 0

Consider this:

set A: 1 2 3 4
set B:     3 4 5 6
set C:       4 5 6 7
set D: 1

I want to compare D with the rest and get as a result a set of numbers as most relevant.
The result should be in this order: 4 (as D has a common number with A and 4 is in A and also in B and C), 3 (as D has a common number with A and 3 is in A and B), 2 (as D has a common number with A and 2 is also in A), then 5, 6, 7.

Is there some algorithm to do this in an efficient way in PHP/MySQL? I don’t want to reinvent the wheel, and also the database would eventually have a huge number of sets..

  • 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-13T05:45:03+00:00Added an answer on May 13, 2026 at 5:45 am

    In SQL, I’ll assume you have a table called sets, with 2 columns, e for the elements and s for the set name.

    select e,count(*) as c from sets where s in
    (select s from sets where e in (select e from sets where s='D') group by s)
    group by e order by c desc
    

    explanation:

    (select e from sets where s='D')
    

    selects the elements of group D.

    (select s from sets where e in (select e from sets where s='D') group by s)
    

    selects all the groups that have common members with the previously selected group.

    and then you select all elements from these sets, and order them by the number of appearances (as joel suggested)

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

Sidebar

Related Questions

Consider this abstract class public abstract class Foo { public Injectable Prop {get;set;} }
Consider this table structure people{id,firstName,lastName,preferredName} list{id,person1_id,person2_id} I want to get all data from list
Consider this class: public class Column<T> { public string Header { get; set; }
Is it possible to have nested set capabilities in this somewhat custom setup? Consider
I want to remove an item from HashMap, by applying a criteria. Consider this
Consider this dictionary format. {1:{'name':'chrome', 'author':'google', 'url':'http://www.google.com/' }, 2:{'name':'firefox','author':'mozilla','url':'http://www.mozilla.com/'}} I want to remove all
Is it possible to set default values for models ? For example consider this
I want to do contextal form validation in django. Consider this case: PLACE_TYPES =
Consider this class: class test { public function __set($n, $v) { echo __set() called\n;
Consider this line in the pygame loop: pygame.display.set_mode().fill((0, 200, 255)) From: http://openbookproject.net/thinkcs/python/english3e/pygame.html I. How

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.