Skip to content
  • Home
  • Category
  • Contact
  • Terms & Conditions
  • Privacy

Roy Tutorials

Technical… Theoretical… Practical…

  • Home
  • Category
  • Contact

Home » Search

Tag: Search

Java 

Check if a Binary Tree is Binary Search Tree or not

16th Sep, 2019 Soumitra Roy Sarkar

Introduction This tutorial will check if a Binary Tree is Binary Search Tree or not. We know that a binary search tree (BST) is a node based binary tree data structure which satisfies the following properties: The left sub-tree of a node contains…

Continue Reading
Kotlin 

Finding Start and End Index of an element in a sorted Array using Kotlin

20th Aug, 2018 Soumitra Roy Sarkar

Finding start and end index of an element in a sorted array using Kotlin programming language will be shown here. The array may contain duplicate elements and we will see how to find a start and end index for an element in…

Continue Reading
Spring Boot Spring REST 

Spring Boot MVC AutoComplete using jQuery

4th Oct, 2019 Soumitra Roy Sarkar

Introduction Autocomplete allows you to easily create autocomplete and auto-suggest boxes for text input fields. When you start a search on Google, you can find the information you are looking for using search predictions. Search predictions are possible search terms you can…

Continue Reading
Array C Search Algorithm 

Binary Search using C

24th Jun, 2019 Soumitra Roy Sarkar

This example shows how Binary Search Algorithm works. Binary search algorithm is better when an array is sorted because it makes comparison between the search key “k” and middle element of the array. Since the array is sorted, the comparison results either…

Continue Reading
Array C Search Algorithm 

Sequential Search using C

24th Jun, 2019 Soumitra Roy Sarkar

This example shows how Sequential Search algorithm works. Simple way to search for a key value k in an array a is to compare the values of the elements in a with k. The process starts with the first element of the…

Continue Reading
Java 

Searching an element in Java ArrayList

27th Sep, 2016 Soumitra Roy Sarkar

This tutorial example will show you how to search an element in Java ArrayList in both case sensitive and case insensitive way.

Continue Reading
 

About Me

Soumitra Roy Sarkar
I am a professional Web developer, Enterprise Application developer, Software Engineer and Blogger and writing blogs is my passion. Connect me on | | |

Useful Links

  • Category
  • Contact
  • Privacy
  • Terms & Conditions

Popular Posts

  • Setup HMVC with Codeigniter 3
  • Nested comment system in PHP, MySQL and AJAX
  • Python REST API CRUD Example using Flask and MySQL
  • Codeigniter Online Visitor Tracking System
  • DataTable using Codeigniter, MySQL and AJAX

Recent Posts

  • How to configure Junit 5 using Maven and Gradle in Eclipse
  • How to download file using Python Flask
  • How to convert file content into PDF document using Python
  • How to convert HTML Content into PDF Document using Python
  • How to create a pdf file using Python
Copyright © 2014 - 2019 Reproduction of content strictly prohibited
Privacy   Terms & Conditions

This website uses cookies to ensure you get the best experience on our website