Java Program to Perform Searching Using Self-Organizing Lists

This is a java program to search an element using Self Organizing lists. A self-organizing list is a list that reorders its elements based on some self-organizing heuristic to improve average access time. The aim of a self-organizing list is to improve efficiency of linear search by moving more frequently accessed items towards the head of the list. A self-organizing list achieves near constant time for element access in the best case. A self-organizing list uses a reorganizing algorithm to adapt to various query distributions at runtime.

Here is the source code of the Java Program to Perform Searching Using Self-Organizing Lists. The Java program is successfully compiled and run on a Windows system. The program output is also shown below.

//This is a java program to search an element in self organizing lists
import java.util.Random;
import java.util.Scanner;
 
class SelfOrganizingList 
{
    private int[] list;
    private int[] count;
    private int size;
 
    public SelfOrganizingList(int listSize) 
    {
        list = new int[listSize];
        count = new int[listSize];
        size = 0;
    }
 
    public boolean isEmpty() 
    {
        return size == 0;
    }
 
    public boolean isFull() 
    {
        return size == list.length;
    }
 
    public void makeEmpty() 
    {
        int l = list.length;
        list = new int[l];
        count = new int[l];
        size = 0;
    }
 
    public int getSize() 
    {
        return size;
    }
 
    public void insert(int val) 
    {
        if (isFull()) 
        {
            System.out.println("Error : List full!");
            return;
        }
        list[size] = val;
        count[size] = 0;
        size++;
    }
 
    public void remove(int pos) 
    {
        pos--;
        if (pos < 0 || pos >= size) 
        {
            System.out.println("Invalid position ");
            return;
        }
        for (int i = pos; i < size - 1; i++) 
        {
            list[i] = list[i + 1];
            count[i] = count[i + 1];
        }
        size--;
    }
 
    public boolean search(int x) 
    {
        boolean searchResult = false;
        int pos = -1;
        for (int i = 0; i < size; i++) 
        {
            if (list[i] == x) {
                searchResult = true;
                pos = i;
                break;
            }
        }
        if (searchResult) 
        {
            count[pos]++;
            int c = count[pos];
            for (int i = 0; i < pos; i++) 
            {
                if (count[pos] > count[i]) 
                {
                    for (int j = pos; j > i; j--) 
                    {
                        list[j] = list[j - 1];
                        count[j] = count[j - 1];
                    }
                    list[i] = x;
                    count[i] = c;
                    break;
                }
            }
        }
        return searchResult;
    }
 
    public void printList() 
    {
        System.out.print("\nList = ");
        for (int i = 0; i < size; i++)
            System.out.print(list[i] + " ");
        System.out.print("\nCount = ");
        for (int i = 0; i < size; i++)
            System.out.print(count[i] + " ");
    }
}
 
public class Search_Self_Organizing 
{
    public static void main(String[] args) 
    {
        Random random = new Random();
        int N = 20;
 
        SelfOrganizingList list = new SelfOrganizingList(N);
        for (int i = 0; i < N; i++)
            list.insert(Math.abs(random.nextInt(1000)));
 
        Scanner scan = new Scanner(System.in);
        System.out.println("SelfOrganizingList Searching \n");
 
        list.printList();
 
        System.out.println("\nEnter integer element to search");
        System.out.println("Search Result : " + list.search(scan.nextInt()));
 
        scan.close();
    }
}

Output:

$ javac Search_Self_Organizing.java
$ java Search_Self_Organizing
 
SelfOrganizingList Searching 
 
List = 855 318 462 851 373 360 811 401 813 50 291 346 707 118 633 217 715 594 999 99 
Count = 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 
Enter integer element to search
811
Search Result : true

Related posts:

Java Program to Find the Median of two Sorted Arrays using Binary Search Approach
How to Replace Many if Statements in Java
Java Program to Implement the Edmond’s Algorithm for Maximum Cardinality Matching
Spring WebFlux Filters
Guide to Spring @Autowired
Java Program to Check the Connectivity of Graph Using DFS
Java Program to Repeatedly Search the Same Text (such as Bible by building a Data Structure)
Sử dụng JDBC API thực thi câu lệnh truy vấn dữ liệu
Working with Network Interfaces in Java
Concurrent Test Execution in Spring 5
Rest Web service: Filter và Interceptor với Jersey 2.x (P1)
Spring MVC and the @ModelAttribute Annotation
Java Program to Create a Balanced Binary Tree of the Incoming Data
String Processing with Apache Commons Lang 3
Cài đặt và sử dụng Swagger UI
Java Program to Implement Warshall Algorithm
Java Program to Solve Travelling Salesman Problem for Unweighted Graph
Java Program to Implement Rolling Hash
Guava – Join and Split Collections
Java Program to Implement ConcurrentHashMap API
Tạo số và chuỗi ngẫu nhiên trong Java
Updating your Password
Java Program to Find k Numbers Closest to Median of S, Where S is a Set of n Numbers
Làm thế nào tạo instance của một class mà không gọi từ khóa new?
Working with Kotlin and JPA
Spring MVC Content Negotiation
Java Program to Implement RenderingHints API
Biểu thức Lambda trong Java 8 – Lambda Expressions
Spring MVC Tutorial
Java Program to Check if an UnDirected Graph is a Tree or Not Using DFS
Java Program to Find the Longest Path in a DAG
Deploy a Spring Boot App to Azure