Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [search]

Questions about search algorithm mechanics and implementation. *NOT* for questions about using search tools within an API (e.g. Google, Bing, Facebook).

0 votes
0 answers
14 views

Sublime Text :: Sort Lines By Regex Matches

Title is pretty much self explanatory. I have made a sorted list (by countries) of all of the places I have been in : 🇦🇱 Albania :: Tirana 🇦🇹 Austria :: Vienna 🇧🇾 Belarus :: Minsk 🇧🇪 ...
Hezi-Gangina's user avatar
0 votes
0 answers
8 views

Traverse a graph with multiple stops from a starting point? [duplicate]

I have an undirected weighted graph I need to traverse from X node to a list of nodes. The list is unordered by default, meaning that the order of which nodes are traversed is not important. What's ...
hesoyam's user avatar
0 votes
0 answers
19 views

Flutter Bloc Search

I pull data in rss format using bloc in Flutter I have a global textfield in this way, I have categories under it and when I change the category, I change the page with page builder. I pull the ...
vkc's user avatar
  • 15
0 votes
3 answers
56 views

How to find rows with value on either side of a given value?

Python, Pandas, I have a dataframe containing datetimes and values. # Create an empty DataFrame with 'timestamp' and 'value' columns df = pd.DataFrame(columns=['timestamp', 'value']) df.set_index('...
Dave's user avatar
  • 401
0 votes
0 answers
8 views

Return Value Empty When Searching with Milvus

I was attempting to create a Milvus collection using this function below def __generate_collection(self): if self.collection_name not in self.milvusClient.list_collections(): schema = ...
Trevor Miller's user avatar
-2 votes
0 answers
12 views

Search result wrong for GoogleMaps [closed]

I was searching for an address of Korean grocery market. - In English: Joong boo market at Schaumburg - In Korean: 중부마켓 샴버그 The search result with English was correct, but the result with Korean was ...
Jun Chul Kim's user avatar
0 votes
0 answers
45 views

How can I estimate the difference in performance of a HashMap lookup vs List iteration in Kotlin?

I am working on an application that needs to map pdf documents to corresponding json data files (see: Kotlin data structure for efficient lookup of nested data for more details). In trying to ...
pbuchheit's user avatar
  • 1,663
-1 votes
0 answers
18 views

What is the best way to list an array of attributes without using a table in angular? I've tried to use Angular material such as mat-list, mat-table [closed]

I was assigned a project, that will search and display user data (also allow for data manipulation for titles, claim-roles, etc). My application is completely functional however it is messy and ...
Eli Walker's user avatar
0 votes
0 answers
12 views

Python Arrays - how to create mask including adjacent grid points within user-specified radius

Am running into a brick wall due to inexperience. Searches on-line and discussions with fellow python experts here coming up empty. Have a 2d lat lon grid of wind speed. Want to create a binary ...
Pete's user avatar
  • 1
0 votes
1 answer
43 views

Azure Search Index VIA .NET Core console app, over-writes old document

I am adding documents to Azure Search Index VIA .NET Core console app. When I am adding new documents it over-writes the old document and finally index has only one document. I am using ...
user26459797's user avatar
-5 votes
0 answers
25 views

How can I scrape websites to find those using a specific SaaS software? [closed]

I am trying to identify websites that use a specific SaaS software. I have a sample of the HTML structure where the SaaS software is integrated: <div id="community_plans"> <div ...
Davy Renckens's user avatar
-1 votes
0 answers
66 views

How to determine if a node in graph is connected to another node efficiently? [closed]

Now I know some people will suggest DFS or BFS etc etc, but I am looking for other faster approaches. The graph I'm working on has "mixed" directions - some edges are directed but some aren'...
UndefinedCpp's user avatar
0 votes
0 answers
22 views

JQuery Autocomplete function is triggering multiple times

I need to set a search bar in my code where it will retrive the data of the products present in the database.Here in the same project they have used the exact code to do the product search I used that ...
Guru1804's user avatar
-2 votes
1 answer
22 views

Big Data to implement Inverted Search Index

Which db/cloud service provides easy way to implement inverted search index? I have ids of tables and ids of its columns and need to find all the tables with having the following set of columns. I ...
Oleksiy Druzhynin's user avatar
0 votes
1 answer
47 views

Checking a candidate majority element: Does my simplification work with all cases?

Here are the details of the problem: Given a sorted array arr of N elements. A majority element in an array of size N is an element that appears more than N/2 times. The task is to write a function ...
Gargouri Nourallah's user avatar

15 30 50 per page
1
2 3 4 5
2488