0
votes
2answers
55 views

source code snippets for creating a lookup table with insert, delete and search function

I want to construct a table with linux C each table entry has 3 fields: 1 ip/port pair, 2 a FIFO queue pointer, 3 a thread id the first entry ip/port pair is also a key for search, for this ...
1
vote
2answers
63 views

inserting node (Binary search tree) C

I'm trying to insert a node in a binary search tree and I'm getting a little problem. #include "stdafx.h" #include <string.h> #include <stdlib.h> typedef struct Node{ char ...
-2
votes
1answer
75 views

How to delete a specific line from record in C programming (it can't proceed deletion) [closed]

#include <stdio.h> #include <conio.h> #include <string.h> #include<stdlib.h> struct person{ char stdNumb [20]; char firstName [20],lastName [20], icPass [20], nationality ...
0
votes
2answers
44 views

how to implement a search in an array containing book names in c

i have this array of structs struct BookInfo { char title[50]; int numAuthors; char authors[50][50]; int year; int checkedout; }; struct BookInfo library[500]; and i am trying ...
0
votes
1answer
55 views

searching within an array of structs in c

i see plenty of examples on how to search arrays to find a specific instance what i want to do is find all the instances and print them for example i have this struct struct BookInfo { char ...
0
votes
1answer
91 views

Searching in a single linked list in C

I got a few problems when writing this program. While searching in the list, only the first result can be shown. the program cant show more than one result even if there are other data matching the ...
1
vote
2answers
38 views

error in my search linked list implementation

My program doesn't seem to be opening the text files properly. I have a path.txt which is a string representation of all the paths of folders and text files which I have created. When running the ...
0
votes
2answers
28 views

recursively searching bst for non-key value

I'm having trouble with the logic of this. How do I search the entire tree (since I can't rely on any order search) and only return one matching value (if it exists)? If I return the recursive call, ...
0
votes
4answers
282 views

binary tree recursively search c code [not Binary Search Tree]

The problem with my code is that,when a left child value is searched then due do to recursion levels it goes back and checks the right child.And the return gets incorrect. I can't find a way to get ...
1
vote
2answers
156 views

Inserting a string into a Binary Search Tree C

I need to insert strings into a binary search tree but each run through my insert function updates all the nodes and not just the appropriate one. Its required that each word placed in the binary ...
0
votes
2answers
106 views

Binary Search Tree C delete node

I am writing a program that reads in a "student record" if you will and then separates it into 4 binary search trees based on the data. I am attempting to delete a node, but instead of actually ...
0
votes
1answer
116 views

Interpolation Search Program?

When I enter a value up to about 200000, there is no problem with it. But if I search a bigger value program just does nothing. Just passes one row down and wait. What is the problem with this? ...
1
vote
4answers
129 views

Efficient histogram implementation using a hash function

Is there a more efficient approach to computing a histogram than a binary search for a non-linear bin distribution? I'm actually only interested in the bit of the algorithm that matches the key ...
0
votes
2answers
47 views

Searching a full hash table

Considering the following code snippet: #include<stdio.h> #include<conio.h> #define TABLESIZE 100 sturct record{ int k; int r; }table[TABLESIZE]; int tcount=0; int ...
-2
votes
1answer
106 views

C Language - how do I fix my Binary Search Function in my code?

This is what I have #include <stdio.h> #include <stdlib.h> void print(int a[], int size); void sort (int a[], int size); void swap (int* a, int *b); int search(int ...
0
votes
3answers
141 views

Binary tree complexities

I would like to know some complexities of binary search tree, I can't find complete information. I want to know complexities for this operations on a binary search tree 1) to add/insert an element 2) ...
1
vote
1answer
195 views

Algorithm(!= linear search) to find the first number less than X in an array of integers

I'm looking for an algorithm to find the first number less than X in an array of integers. Actually I'm using linear search,but I think that binary search may be better(as I already have seen sometime ...
0
votes
3answers
187 views

Searching function for linked list in C

I'm sure this is very simple, but I'm new to linked lists and a bit rusty on pointers. I'm used to coding in C++ where you can easily pass parameters, but in C not so much. So I get confused when ...
0
votes
0answers
75 views

searching an lzw encoded file

I am looking to alter the lzw compressor to enable it to search for a word in an LZW encoded file and finds the number of matches for that search term. For example if my file is used as ...
0
votes
3answers
42 views

C Find a subset of strings from a list

I have a list of 1M entries and I want to exclude a subset of 20,000 of these entries (the two lists are in different order by have the same key (string)). Can anyone suggest a quick search algorithm ...
2
votes
1answer
67 views

How to save and load a giant hash-table to-n-fro from disk?

I am trying to write a search-engine for a large collection, for learning purposes. I started with my own intuitions. Then I researched and am finally arriving at a working model. I am constructing a ...
0
votes
0answers
21 views

How should I store address of posting file for a term T in index?

I am trying to build a search-engine for learning purposes. I have started with my own intuitions and then researched materials. Finally I am arriving at a working model. I am trying to figure out ...
0
votes
2answers
84 views

C: searching an array and returning multiple values

I'm working on a sample from my textbook regarding 2 dimensional arrays. It has the following example that allows the user to input a value, and then it searches the array and returns the location of ...
-4
votes
1answer
135 views

How to search a file using C programming [closed]

A programme containing diary function. How can I manage to search one of the diaries with incompleted key words? I mean if I want to find a file named "A beautiful day",I write "beautiful"to find it. ...
0
votes
2answers
77 views

C: how would I write a search function to look for a match in a struct array, and return (print) the entire struct it matched?

#include <stdio.h> #include <stdlib.h> #include <string.h> #define RECORDS 10 The function below is what I am asking for help with. static char searchforRecordbystate(char ...
-1
votes
1answer
50 views

C struct array and search: Attempting to a match a member and prnt the entire struct if a match is found.

here is the struct int main() { typedef struct { char firstName[25]; char lastName[30]; char street[35]; char city[20]; char state[3]; int zip; ...
1
vote
2answers
86 views

Binary Search in C Not working correctly [closed]

int recurbinarysearch(int * oringalary, int low, int high, int target) { if (low > high) { return -1; } else { int mid = (low + high) / 2; if (target == * ...
1
vote
2answers
108 views

C linked list searchNode / freeList methods (seg fault)

I've been making the transition from Java to learning C for a class. A current exercise is to implement removeAtFront(), searchNode(), and freeList() methods for a LinkedList. I understand ...
0
votes
2answers
110 views

Find subarray in array

How do you efficiently find all matches of an subarray in another array? For example this is the way I have implemented it now: #include <stdio.h> #include <stdlib.h> #include ...
0
votes
1answer
147 views

How can I quickly do a string matching on many regex keys?

I have an array of elements whose key is a regex. I would like to come up with a fast algorithm that given a string (not a regex) will return in less than O(N) time what are the matching array values ...
2
votes
0answers
171 views

Avoid Branch Divergence in CUDA String Searching

I would like to know how to avoid branch divergence in string searching with CUDA, and if there was a good way to do it. At the moment I tried to adapt Knuth Morris Pratt to GPUs but I believe that ...
2
votes
2answers
225 views

Source code organizer and cataloging program?

I've got 30+ years of source code (C/C++/Java); many projects done over the years organized in many folders on a hard drive. Does anyone know if there is a program that could run through a list of ...
-1
votes
1answer
43 views

Search Method Failing

I'm trying to do a search Method in which checks 2 IDs which only store integer. Firstly I have a database of customers. I input the Name,Surname,ID and Address after each other in this order and ...
0
votes
1answer
154 views

How to check whether ID already exists in File with C Programming

I have this coding down below (just posting the Customers Management only). This a database in which I am adding a customer each time it passes. Now I need to check whether the c.ID which is the ...
0
votes
2answers
102 views

Looping through array, what is better, faster, etc?

I want to implement a Hash or PHP-like Array. What is better, option a) or option b) to find a element by its key? (All variables are set and initialized and so on!) a) for( i = 0; i < ...
0
votes
3answers
504 views

Searching, sorting and printing a sorted 2D array of integers in C

I am having trouble in printing the location of the maximum in a 2d array of integers. i.e. the element array[33][2] with value 500 is maximum, where [33] signifies the 33rd week and [2] signifies the ...
3
votes
6answers
335 views

What would be the most efficient way to find a[i] = i in a sorted array?

Given an array a[], what would be the most efficient way to determine whether or not at least one element i satisfies the condition a[i] == i? All the elements in the array are sorted and distinct, ...
1
vote
5answers
166 views

searching an integer from a text file in c

I have a simulation program written in c and I need to create random numbers and write them to a txt file. Program only stops - when a random number already generated is generated again or - 1 ...
1
vote
2answers
167 views

C Binary Search Tree malloc not giving enough memory for following nodes

I've come up with a problem where I do not give enough memory to my node after the first one when I do, for example, firstNode = (node)malloc(sizeof(node)). The following is the structure of *node and ...
3
votes
1answer
125 views

Detect duplicate names via fuzzy matching

I have a SQLite database which has (user_id, name). I want to detect if a user is already in the system by name. The problem is that the name is coming from a user meaning that he can misspell the ...
2
votes
2answers
113 views

search a file for a string

I have to search the file for a string entered but the code below doesn't work. It always says "couldn't find in the dictionary. The contents of the file (called Dictionary.txt) is as follows: pow ...
2
votes
2answers
166 views

Multiway Tree search algorithm in C implementation

typedef struct dt { .....; } Data; typedef struct nd { int id; Data *data; struct tm *_parent; struct tm *_child[7]; } Node; Node* findNode(int id, Node *tree) { Node *p = ...
1
vote
4answers
350 views

String parsing using strtok in C

I would like to read from a .csv file line by line and then check if the first word of my line matches string_1. If it matches, then I would also like to check if the second word matches string_2. My ...
2
votes
1answer
72 views

Search a .csv file for name match in C

I currently have a .csv file containing three fields: user, password, type. For instance, my file looks like this: michael, sun123, user joseph, sierra7, user isaac, apple2, sysop I would like ...
-2
votes
2answers
49 views

Finding Positions in C String

If I have a C string that contains *'s and I want to find the position of the 3 star in this string. What is the best/ more efficient way to do it other than going through a loop and checking char by ...
0
votes
2answers
89 views

Optimization of tag searching in XML file

I'm writing custom function for getting all tags in an XML file. I'm using this code: wchar_t *GetLine(wchar_t *fileName=L"indexing.xml", wchar_t endSymbol = '\n') { ...
1
vote
1answer
132 views

search and replace text

I am writing a small C program that searches for a string of text within a file and replaces it with another string but while doing this I keep getting a segmentation fault and for some reason my ...
0
votes
3answers
249 views

C string search get part of string

I am trying to make a small test function that when passed a char * will search that string for a certain sub string and then output the next characters after the white space until the next ...
-1
votes
2answers
238 views

Search for a specific character in a 2D array [closed]

I was wondering how you would search through a 2D array (used as a parameter for a function), and find a specific character, e.g. an exclamation mark? Say I have a 2D array island[20][40] and I want ...
1
vote
1answer
121 views

Searching strings C

First time posting here so I'm sorry if I mess up. I need to search a string and return any strings containing the search data with the search data highlighted. Example: If my initial string is: Hi ...

1 2 3