Questions tagged as 'busca'

6
answers

How to do a search by ignoring accent in JavaScript?

Suppose I have a list of words in JavaScript (if necessary, already sorted by collation rules ): var palavras = [ "acentuacao", "divagacão", "programaçao", "taxação" ]; Notice that I have not used cedilla ( ç ) nor...
asked by 04.02.2014 / 01:48
2
answers

How not to allow indexing by search engines?

On this day I placed my domain on Google and it fetched my Web Site and my System . I would like my System to be hidden from Google and from any other search engine. Would you like to do this? How to get indexing already done...
asked by 20.02.2015 / 15:20
3
answers

How to do a search ignoring accentuation in Python?

Suppose I have a list of words in Python (if necessary, already sorted according to the collation rules): palavras = [ u"acentuacao", u"divagacão", u"programaçao", u"taxação", ] Notice that I have not used cedilla ( ç...
asked by 08.01.2014 / 21:01
2
answers

Binary search in linked list [closed]

How can I perform a binary search on a simple linked list with head? Also if it is possible to do this, if there is any special method. In the EP I can not count the number of elements in this list beforehand, I have to search and insert a cell...
asked by 26.11.2015 / 03:15
4
answers

Why are maps faster than arrays?

I have always read and heard that maps are much faster than arrays for searches. Until I decided to see how much I did a jsperf: link What I would like to understand is what mechanisms make mapping faster, and why. edit: In jsperf above,...
asked by 22.08.2014 / 21:41
3
answers

Search for certain dates in the VARCHAR field in SQL (MySQL)

I have the following condition: WHERE sv_users.userDataNascimento LIKE '%95%'; And this condition searches on a date ( 11/12/1995 ), type VARCHAR and not Timestamp , a year ending with the numerals 95 . This numera...
asked by 16.01.2014 / 13:07
1
answer

Google Search Tool for my site

How to include a search within the Google search engine? Would you include a meta tag in my site for this to appear on Google? A little difficult to explain, so I'll illustrate with an image.     
asked by 30.03.2015 / 19:03
9
answers

Search via ajax during typing in input text (autocomplete)

I made a search using ajax that when clicking a button triggers a request with the searched term and returns with data that fills combobox html ( select ). So far so good. However, I found it interesting to change this behavi...
asked by 02.01.2017 / 17:39
2
answers

Dictionary Search

I have the following dictionary: public static Dictionary<string, string> ObterCodigo() { return new Dictionary<string, string> { {"18", "Teste"}, {"19", "Teste"}, {"02", "AAA"},...
asked by 29.01.2014 / 14:12
2
answers

Search returns equal data

I'm doing a search system where you have some fields (conditions) to search and find the results. These fields are not mandatory, in case the person type something he will find the data entered, in case the person does not type, the system will...
asked by 15.09.2014 / 11:56