1
vote
1answer
55 views

How to organize multiple arrays in one class?

This will eventually allow a user to look up a book by using a two digit number. The title however will only output if you input the correct number. Details about code wherever important info is ...
1
vote
4answers
71 views

Is it possible to search through an array and return the index of the value

I am writing a simple Java program that basically stores an array of artists that have been in the charts previously; this is my code so far for the program package searching; import java.util.*; ...
1
vote
9answers
88 views

HashMap<String, Integer> Search for part of an key?

I am currently using HashMap<String, Integer> which is filled with keys of type String which are all, let's say, 5 chars long. How can I search for an specific key of 4 chars or less, which is ...
0
votes
7answers
50 views

How to find certain words in a text file, then find numbers in java

OK, so I have the following text file (answers.txt): Problem A: 23|47|32|20 Problem B: 40|50|30|45 Problem C: 5|8|11|14 Problem D: 20|23|25|30 So basically, what I need is ...
-1
votes
1answer
47 views

Binary Search output issue?

This is a first for using a binary search for me, so I've run into a small issue (hopefully!) first the program, it allows the user to type in a random number, and if that number matches any book it ...
0
votes
2answers
32 views

Finding information stored in array by binary search

This is a small library with two books for the sake of the question, it allows the user to type in a random number, and if that number matches up with a book the title of the book is outputted. I've ...
0
votes
0answers
47 views

How to output binary search method?

This is just your average binary search, in my program I use this search method to allow the user to look for book titles. String [] binaryArray = {"4", "6", "10"}; //the chosen binary numbers to ...
1
vote
3answers
63 views

Is it possible to use another web-site search results in mine? [closed]

I have to develop a web app that shows certain places on a map, and those places can be found on another websites map already... is it possible that, from my app, I call that other website search form ...
0
votes
1answer
45 views

Search optimization when data owner is someone else

In my project, we have 2 REST calls which take too much time, so we are planning to optimize that. Here is how it works currently - we make 1st call to system A and then pass the response to system B ...
0
votes
2answers
26 views

Perform Lucene wildcard search

How does Lucene support wild card searches? I want to search the words starting with ox I am searching the words with ox* but its also returning the unexpected results like anti-oxide - but I don't ...
2
votes
1answer
51 views

ArrayList.indexOf versus sequential searching of an array of objects

Does the JVM run through an array of Objects faster than an ArrayList of Objects? To elaborate, say I have two variables Object theObject = someObject; Object[] objArr; ArrayList objArrList; ...
2
votes
1answer
128 views
+100

Implementing a backtrack search with heuristic?

I'm getting quite interested in search algorithms and backtrack programming. For now, I have implemented Algorithm X (see my other post here: Determine conflict-free sets? ) to solve an exact cover ...
1
vote
4answers
85 views

Methods aren't returning anything in Java

I wrote a class in Java with 5 methods. Linear search, which returns true if the value is found and false if it's not found. Linear search 2, which returns the location of the value, if found. binary ...
0
votes
1answer
18 views

Solr highlights shorter similar words

Looking for some help in pointing me in the right direction. I am new user to SOLR and am using solrj to pull data back from the search engine. Everything seems to work fine except the highlighting ...
0
votes
0answers
27 views

Search word in textArea and Color it

Haw can I search a specified word in a textArea and color it or color the line that contain this word? Please help me.
0
votes
0answers
78 views

Java: Algorithm for Searching Tree Structure of Nodes

Im working on a "family tree" program in java, and I am having trouble wrapping my head around an algorithm for searching through the nodes. A node consists of a Name, and link to a partner, sibling, ...
0
votes
2answers
39 views

RegEx: How to find instance of new class in Eclipse?

I am working on old large pieces of code that directly create struts 1 actions, because it places logic in there. I wish to find instances where the action classes are created directly in the code. ...
0
votes
1answer
32 views

Using JComboBox as a Search

I want to know how to get an JComboBox to auto suggest the elements when we type in the combo box. For an example, If I had loaded a JComboBox with these names using MySQL, [Amila, Nimila, Nikila, ...
1
vote
1answer
46 views

How to modularize heuristic in A* (run-time heuristic)

I was wanting to use the strategy pattern to modularize the heuristic in my A* implementation but am having some trouble separating it. I tried to initialize my priority queue with a Comparator that ...
0
votes
1answer
34 views

Searching for tags in Mongodb java

I have 3 different collections, with different content in my script: image, audio and video. In each element I put in the database, I add a tag. When I am trying to search for the tags (of the files ...
0
votes
2answers
39 views

Instead of returning the whole table, how can I just return the row they searched for?

New to programming, and this site. My current .jsp is <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@ taglib prefix="s" ...
0
votes
0answers
18 views

Apache Solr - SolrDispatchFilter null:java.io.FileNotFoundException

I'm using Apache Solr to index rich documents. It was working fine but suddenly I'm getting the following errors every time I try to index a document: 11:32:16 SEVERE SolrDispatchFilter ...
0
votes
5answers
94 views

Fast way to search in the List<String> in Android

Problem Description I have list of strings, which contains 8000 items. Items which contains list are described below. List<String> stringList = new List<String>(8000); ...
0
votes
1answer
63 views

more than 4 results on google api search java code [duplicate]

I must do a java project which use Google API for search results. I found this link : http://www.programcreek.com/2012/05/call-google-search-api-in-java-program/ but this program return only 4 ...
1
vote
1answer
36 views

Solr filter out facet results individually

I am working on filtering out facet returned by solr based on predefined list of criterias. For example I am querying for documents that are of different types. The facet returned is as follows: ...
0
votes
2answers
79 views

How to get all possible words?

I have a method that finds all the possible words in a prefix tree. It takes in a node and finds all possible words for that node. However, I need it to be able to take in combinations of nodes and ...
2
votes
1answer
60 views

How to print out found words from a trie in java?

I have a method here that searches and prints what i think is all letter combinations of a dictionary in trie form the node entered. I want to specify each print out and and it to my search(string x) ...
0
votes
2answers
63 views

Binary search algorithm does not work properly - Java

I want to make my own binary search algorithm to search ArrayList of 1 000 000 elements. I decided to do the search with do-while loop. I am aware I could use while() loop. But when I run it, it takes ...
1
vote
2answers
33 views

Search for accounts using for loops and if statements

I'm having a problem with my program. Currently, I'm making a billing account system. Basically, I've got a great deal of the system up and running. As a feature, rather than having a user remember ...
0
votes
1answer
24 views

How to connect DisMax handler solr?

How should I configure solrconfig.xml for connecting DisMax plugin? I need it to use full-text search.
0
votes
1answer
38 views

Optimal search data structure

I searched for this before I post but I couldn't fine something that helps me. I'm using java. I have a file of 300.000 words (already sorted alphabeticaly). I want to load these words in a structure ...
1
vote
2answers
55 views

How can I do binary search in java ArrayList<Long>?

I am trying to make binary search in ArrayList, but the binarySearch method does not work for Long, as well as Double and Float. My code is import java.util.*; public class BinarySearchInArrayList{ ...
0
votes
1answer
44 views

search from apache lucene index and count the result group wise

I am trying to search from lucene index but i want to filter this search . there are two fields contents and and category .suppose i want to search in files which have "sports" and i also want to ...
0
votes
3answers
80 views

Search and display content around a matched word in a big text [closed]

I have a text. Example: hello1 hello2 hello3 hello4 hello5 I want to search a word, say hello3 Now, I want a feature like grep in java which can print 1 line before match and 1 line after ...
-3
votes
1answer
52 views

Java 1.6: Sorting a List of models basel on a model value

I am using java 1.6. I have a Employee model as shown below: private String id; private String firstName; private String lastName; private String phoneNumber; //getters and setters The ...
0
votes
0answers
63 views

how to implement search directly from server

I want to implement search directly from the data on server. For example search from google.com. A edittext, like in search bar of google a word in edittext then it hits the server and fetch the ...
1
vote
2answers
134 views

How to implement a basic Analyzer in Lucene 4.2.1?

Lucene 4.2.1 doesnot have StandardAnalyzer, and I am not sure how to implement a basic analyzer that does not alter the source text. Any pointers? final SimpleFSDirectory DIRECTORY = new ...
0
votes
2answers
161 views

Balanced Binary Search Tree

I need to build a balanced binary search tree. So far my program inserts the numbers from 1 to 26, but my program does not build it into a balanced binary search tree. If anyone could look at my code ...
2
votes
4answers
46 views

Java indexof() search

I have a java LinkedList which contains several custom objects of the same type. LinkedList<myClass> = new LinkedList<myClass>(); Within my objects I have a specific value class ...
-2
votes
0answers
162 views

Balanced Binary Search Tree in JAVA [closed]

Hi I need some help with my homework. I am trying to build a balanced binary search tree from an unbalanced binary tree. I believe I am close to the answer, but just need some help bringing it all ...
0
votes
4answers
60 views

Adding value to java array in the right place

I am trying to write a little program that will contain a array of profiles of people and I am stuck on the method for adding the profiles, as I would like them to be added in correct place so it ...
0
votes
1answer
45 views

How can I optimize this String search/replace method?

I am implementing my own web server. The following method searches for server side includes and builds the html page appropriately. public String getSSI(String content) throws IOException { ...
0
votes
1answer
56 views

Java Binary search not working

I have an insertion search in the main and from there I call the BinarySearch method to search for a number within the array that has already been sorted. I try to compile it I get errors here is my ...
0
votes
1answer
52 views

Instantiating a sub-class of an abstract class

I'll get straight into it. Below is a code snippet from my GeneralSearch class I am implementing in an AI application for solving a word puzzle. I am wondering how to instantiate the subclass within ...
0
votes
1answer
62 views

Is there any other alternative to template specific exclusion of pages from search

I have restricted some pages like admin pages from not getting visible in search results.Using the below code map.put("group.1_group.1_property","**jcr:content/cq:template**"); ...
0
votes
1answer
70 views

twitter search Api connect timeout

I am running this program to search for tweets. Getting the below exception pasted. Could any one help me what the problem is? please let me know if any other details required. Thanks public ...
0
votes
1answer
79 views

Depth First Iterative deepening algorithm returning no results (in java)

I have a search algorithm that is supposed to parse the entire tree, find all results that could match a search query, and return them all as a list. I realize this isn't quite the point of the ...
0
votes
1answer
135 views

Questions about Iterative Deepening Depth First search in java

I'm looking at the pseudocode on Wikipedia for this and trying to use it to write the algorithm in java. My question comes in a difference in how the result is returned. On wikipedia, one result is ...
1
vote
3answers
67 views

Find Text Between words in Java

I want to get all text in between 2 words(1st word is fixed[One] but 2nd is either of 2 words[Two]Or[Three] ). Note :: There may be or may not be space between found text and 2nd word. For example: ...
-1
votes
3answers
374 views

Finding a Word in a Binary Search Tree Java?

The problem I'm having is that I have a binary search three, and all of the nodes contain string values rather than integer ones. It gets these strings from a txt file and places the individual lines ...

1 2 3 4 5 18