❔ Applying binary search into my project

I need help with implementing binary search in this project https://gist.github.com/Programmer-Faraj/fdc814033943b69af8bdf19a00b83b14
Gist
This is an assignment project from my course
This is an assignment project from my course . GitHub Gist: instantly share code, notes, and snippets.
330 Replies
JakenVeina
JakenVeina2y ago
to copy from #help-0
JakenVeina
JakenVeina2y ago
StringComparer Class (System)
Represents a string comparison operation that uses specific case and culture-based or ordinal comparison rules.
Omnissiah
Omnissiah2y ago
?
The king of kings
Thanks a lot, I'll go head and modify the current pattern of the Binary search, so it does the search alphabetically. But before I do that I have a question for you.
Jimmacle
Jimmacle2y ago
travolta
The king of kings
Hey again, are you available?
JakenVeina
JakenVeina2y ago
you got a question, ask it
Jimmacle
Jimmacle2y ago
you'll hear back tomorrow kek
The king of kings
Ok! Awesome. Thank you guys a lot. seems like we have different timezones, I'm from Sweden btw. In order to apply Binary search alphabetically, I would need to convert char to a number since the first letter of each word represents a char, so how do I go and do that?
Jimmacle
Jimmacle2y ago
why do you think you need to convert a char to a number? binary search just needs a sorted array, as long as the values are sortable you can use them directly
The king of kings
Oh! Really. I though I should convert first, because my values are strings in a list and not numbers.
Jimmacle
Jimmacle2y ago
what do you need numbers for?
The king of kings
to find the index of each char I guess or maybe I'm wrong how would binary search find the element if they're a collection of strings
Jimmacle
Jimmacle2y ago
because binary search depends on sorting you can sort anything as long as you can compare the elements
The king of kings
Aha! Ok! Wow, I didn't touch into more deeply in this topic, but I learned something now.
The king of kings
I guess the same context follows for strings as well as for integers, except I need to use the compare method instead
JakenVeina
JakenVeina2y ago
I mean, that is pretty much what he's doing. That's what StringComparer.Compare() does. Takes in two strings and spits out a number that you can use for sorting.
Jimmacle
Jimmacle2y ago
but that's not what he was asking
JakenVeina
JakenVeina2y ago
ah, fair enough I didn't read closely enough
The king of kings
Oh! Stupid me 🤦‍♂️ since I'm using the Compare() method, why the hell I've been thinking about converting a char to a number then 😆
Jimmacle
Jimmacle2y ago
exactly LUL
JakenVeina
JakenVeina2y ago
goodthinking
The king of kings
Logical thinking is very great skill and I'm missing it unfortunately 🙆🏻‍♂️ But guys, why I'm getting those errors above? wait a minute this is the issue var middle = (left + right) / 2;
SG97
SG972y ago
because you're trying to return an int when the methods specifies it returns a string
Jimmacle
Jimmacle2y ago
consider what the number means and what you actually want to return from the method
The king of kings
Ok! I see what you mean. Ok! That's a bit hard to figure out actually.
JakenVeina
JakenVeina2y ago
how so?
The king of kings
I don't know I mean the method compares and returns integer, I'm not sure why it says you can't convert int to string
Jimmacle
Jimmacle2y ago
because you can't the integer isn't what you want to return, think about what that integer is in this context
JakenVeina
JakenVeina2y ago
what method? what method compares and returns integer?
The king of kings
Ok! So the Compare() method compares the strings and the returns an inte either 0 or -1 or 1 based on the comparison in my case I'm already returning an int which's -1 which's wrong because that int should be the outcome of the method not hardcoded, makes sense?
JakenVeina
JakenVeina2y ago
yyyyyessss except for the "already" part
The king of kings
and that's why it saying you can't convert int to string
JakenVeina
JakenVeina2y ago
because you can't because have written return -1; for a method that you declared to return string
The king of kings
Sorry I said wrongly I need to delete that part -1
JakenVeina
JakenVeina2y ago
right or rather replace it
The king of kings
the question remains, how do I go and implement the logic where when the method returns the value, I can use that method to say either "found" or "not found"
JakenVeina
JakenVeina2y ago
what method?
The king of kings
replace it with what?
JakenVeina
JakenVeina2y ago
you tell me what is the scenario where that line is reached?
The king of kings
compare method which one?
JakenVeina
JakenVeina2y ago
where you had return -1 what is the scenario where that line of code is reached
The king of kings
I'm not really sure
JakenVeina
JakenVeina2y ago
well, let's read through the code, then you've got a loop with an exit condition
The king of kings
Yes sir
JakenVeina
JakenVeina2y ago
no breaks within the loop so that line is reached when the loop exits on its own without hitting that return inside the loop what does the loop do? functional description
The king of kings
Well! The loop will keep looping until a certain condition matches then it stops looping.
JakenVeina
JakenVeina2y ago
what condition? what can cause that loop to exit NOT counting the return inside the loop, cause then it will skip over the return at the end of your method
The king of kings
either by break or false value
JakenVeina
JakenVeina2y ago
yes, but there is no break when does "false" value" occur?
The king of kings
no when invalid input is entered or when the comparison outputs to -1
JakenVeina
JakenVeina2y ago
uhhh, no when the comparison outputs -1, you hit the else clause inside the loop
The king of kings
yes the default else
JakenVeina
JakenVeina2y ago
which just changes the bounds of your loop er rather the bounds of the data slice you're looking at alternatively it changes one of the two data items you're comparing what keeps the loop going?
The king of kings
Sorry for being away, I had to take a break just to relax my brain.
The king of kings
You mean the last else?
JakenVeina
JakenVeina2y ago
yes I mean, it's the only one
The king of kings
Ok by data items you mean comparing the two strings?
JakenVeina
JakenVeina2y ago
yes
The king of kings
That's a bit complicated, the loop should continue looping based on the return of the comparison.
JakenVeina
JakenVeina2y ago
yes and when will it exit? there's a 5-word answer
JakenVeina
JakenVeina2y ago
yes, that is the documentation for the return value of .Compare() when does your loop exit
The king of kings
it should exist when the output is -1?
JakenVeina
JakenVeina2y ago
no
The king of kings
No wait
JakenVeina
JakenVeina2y ago
assuming "the output" means "the return value of .Compare()"
The king of kings
when the it finds the element and returns zero 0
JakenVeina
JakenVeina2y ago
what returns 0?
The king of kings
the compare METHOD
JakenVeina
JakenVeina2y ago
okay well, .Compare() doesn't find anything and I asked about the loop, not .Compare() when does the loop exit
The king of kings
Aha! You're right. The while loop is not depending on the Compare method, it doesn't say compare tell me what to do? should I loop or not? Rather the while is controlling the method inside.
JakenVeina
JakenVeina2y ago
it goes both ways the while loop invokes the method and the method does affect the loop, because it's used to sometimes perform a return which breaks the loop you tell me when does the loop exit don't know? well what does the loop DO? what is its purpose? why'd you write it?
The king of kings
I mean the loop should exist when it's returning
JakenVeina
JakenVeina2y ago
when your BinarySearch() method is returning, yes when else
The king of kings
I mean from what learned is that if you want to stop a while loop, there are several ways you can accomplish this step. either you set a bool value true or false
JakenVeina
JakenVeina2y ago
nnnnnot really, no a loop will exit when you call break or return within it or when it begins a new iteration and its condition is false a while loop, at least
The king of kings
or if you iterate to 10 then it will stop at number 10
JakenVeina
JakenVeina2y ago
depends on how you write it
The king of kings
yes, I was gonna mentioned these too
JakenVeina
JakenVeina2y ago
not "too" those are the ways a loop can exit
The king of kings
Yes either by break or return
Pobiega
Pobiega2y ago
Is the while loop the problem, or a lack of understanding of what "binary search" is and does?
JakenVeina
JakenVeina2y ago
right now the problem is that he was trying to return -1; from .BinarySearch() and didn't know why
Pobiega
Pobiega2y ago
Right.
The king of kings
I'm pretty new to Binary search
JakenVeina
JakenVeina2y ago
so, we're trying to figure out what the scenario is where the loop exits and reaches the return line at the end of .BinarySearch(), so we can decide what it SHOULD return instead of -1 ultimately, yeah, it's a problem of not knowing enough about the binary search algorithm or at least, the implementation of it that he's written he wrote a loop and can't tell me what it's supposed to do or when it's supposed to exit
The king of kings
will I did find out that it was wrong to return -1 but still didn't know what should I use to exist the loop until you told me that the keyword break is the only option
JakenVeina
JakenVeina2y ago
I said nothing of the sort
Pobiega
Pobiega2y ago
lets rewind a step. what is the purpose of a search method?
JakenVeina
JakenVeina2y ago
nor did I say that you should be exiting the loop
Pobiega
Pobiega2y ago
what are the possible "cases" of its results?
JakenVeina
JakenVeina2y ago
I'm not asking you to touch the loop at all I'm asking you to explain what it does or what you intend it to do maybe it's correct, maybe not what should it be doing when should it exit
The king of kings
I'm pretty bad at logical thinking
JakenVeina
JakenVeina2y ago
right, that's why we're working on it
The king of kings
You guys have gone many stuff and solved a lot of complicated problems but not me at least not yet.
JakenVeina
JakenVeina2y ago
absolutely
The king of kings
But you guys teach me a lot on how to think like a programmer and that's awesome You guys don't give me the full answer, but you teach me where and why I'm doing wrong.
Pobiega
Pobiega2y ago
So, what is the purpose of a search method? What is the intended goal of calling var result = BinarySearch(list, element);? what do we hope to get out of it
The king of kings
Good question The method is doing the the looping, comparing and by invoking the method in side a switch statement we are able to add the method to the manu + use those arguments passed by parameters and then use the calling method to take user input for searching.
Pobiega
Pobiega2y ago
Not at that detail. Think bigger pocture
The king of kings
Sorry, guy! I reply when I get a short breaks from my work. Pocture
Pobiega
Pobiega2y ago
picture like, what does a search method do what is its purpose
The king of kings
You mean this one?
Pobiega
Pobiega2y ago
No, your method YOUR binary search method
Haze.
Haze.2y ago
I think they're trying to ask what value you want from your method
Pobiega
Pobiega2y ago
I'd like him to reach that conclusion himself
Haze.
Haze.2y ago
Yeah sorry
Pobiega
Pobiega2y ago
thanks 🙂
Haze.
Haze.2y ago
Maybe try asking what they intend to do with the method
The king of kings
Yes, the method should search & find the value of the element in the list.
Pobiega
Pobiega2y ago
find the value of the element in the list.
the value is the element
The king of kings
Sorry, that's correct.
Pobiega
Pobiega2y ago
So what should it find and return?
The king of kings
Of course it should find the element that's sorted by the Bubble sort algorithm.
Pobiega
Pobiega2y ago
no, what stop
Pobiega
Pobiega2y ago
Pobiega
Pobiega2y ago
so if a search method isnt looking for a value, what is it looking for? what does it return?
The king of kings
If the list is not sorted then it can't find the sorted element
Pobiega
Pobiega2y ago
sorted element
????? an element cant be sorted a list can but thats not what Im asking
The king of kings
Sorry
Pobiega
Pobiega2y ago
I'm asking, what should the method return the answer is NOT "the sorted element" or "the value of element" if you dont know the term we use for it, you can describe what it is instead
Haze.
Haze.2y ago
This sounds like my chatgpt threads
The king of kings
it should return an int either 0 or 1 or -1
Pobiega
Pobiega2y ago
no.
The king of kings
what
Pobiega
Pobiega2y ago
thats what Compare does.
The king of kings
Yes
Pobiega
Pobiega2y ago
we are not talking about compare we are talking about BinarySearch
The king of kings
Ok
Pobiega
Pobiega2y ago
var list = new List<string>
{
"aaa", "bbb", "ccc", "ddd", "eee",
};

var something = BinarySearch(list, "ddd");
Console.WriteLine(something);
var list = new List<string>
{
"aaa", "bbb", "ccc", "ddd", "eee",
};

var something = BinarySearch(list, "ddd");
Console.WriteLine(something);
what should this print?
The king of kings
The index of the element of course
Pobiega
Pobiega2y ago
There we go. The index. And what if the element I'm searching for isnt in the list?
The king of kings
Since this is what we use Binary or Linear or Quick search for Other wise what's the meaning of using thses algorithms
Pobiega
Pobiega2y ago
I don't understand what you are trying to say. Yes, search algorithms try to find the index of the given item, thats literally their purpose. And what I've been trying to get you to realize the entire day. So, now that you know what you want your method to do, I hope it will be easier to understand the code. For example, when would it be appropriate to return -1; in a search method?
The king of kings
Awesome question Let me make a logical point here from my understanding We can use this keyword when we're searching for int and not string why? First
Pobiega
Pobiega2y ago
What keyword? why not string?
The king of kings
when we're dealing with searching numbers and we pass a int parameters in out method, and when the method doesn't find the element then we should be using return -1 if the element is not found.
Pobiega
Pobiega2y ago
we should be using return -1 if the element is not found. thats true, regardless of if you are seraching for ints or strings -1 for an index means "not found"
The king of kings
Really
Pobiega
Pobiega2y ago
yes really why would it matter if you are searching for ints, strings or Cakes? its still a list of T and you are trying to find the index
The king of kings
-1 isn't mean the index is out of boundaries
Pobiega
Pobiega2y ago
-1 isnt a valid index, thats correct
The king of kings
But here is my question
Pobiega
Pobiega2y ago
but what else should you return from a method that should return an index, when there was no hit? 0 and any positive number is a valid index, so we cant return that
The king of kings
That's a good question
Pobiega
Pobiega2y ago
no its not the answer is "return -1" thats true for all index returning methods they always return -1 to say "failed" or "not found" etc
The king of kings
Ok
Pobiega
Pobiega2y ago
I suppose you could throw an exception too, if you really wanted, but imho not a good idea
The king of kings
Yeah! That's correct, this is what I learned from the tutorials too. Ok But we couldn't return -1 when we had the Compare() method
Pobiega
Pobiega2y ago
sure we can. Those are not related
The king of kings
it says you can't convert int to string Because compare returns 0 1 -1 an int
Pobiega
Pobiega2y ago
... yes? how is that related to the return value of the search method?!
The king of kings
Man there's a lot of logic in this dame Binary search and it's just a few lines of code 🤷🏻‍♂️
Pobiega
Pobiega2y ago
Programming is logic thats all it is.
The king of kings
Good question
Haze.
Haze.2y ago
What question?
The king of kings
100% correct This
Haze.
Haze.2y ago
That's not a question... Well Kinda a question
Pobiega
Pobiega2y ago
well, it is - a rhetorical question. I didnt ask it expecting an answer.
The king of kings
Ok
Pobiega
Pobiega2y ago
the obvious answer is "they are not"
The king of kings
But I wondered too
Pobiega
Pobiega2y ago
anyways What does a binary search do? We know it wants to return the index of the given element but whats special about binary search?
The king of kings
because both our method signature and Compare() both returns, but our signature can return multiple data types, but not Compare()
Pobiega
Pobiega2y ago
but our signature can return multiple data types, but not Compare()
WHAT
The king of kings
You can return int bool string
Pobiega
Pobiega2y ago
no? no you cant
The king of kings
But Compare() returns int
Pobiega
Pobiega2y ago
public static int BinarySearch(List<string[]> haystack, string needle) thats the signature for binary search (in your case) you cant return bool, or string it should return an index(!!!) a bool isnt an index
The king of kings
Oh! I'm not talking specifically Binary search.
Pobiega
Pobiega2y ago
a string isnt an index
Pobiega
Pobiega2y ago
The king of kings
I'm talking generally about the signature
Pobiega
Pobiega2y ago
... you are talking generally about any method written by you?
The king of kings
I know the Binary search returns only index
Pobiega
Pobiega2y ago
Faraj, please, this is getting beyond frustrating. Can you STICK TO THE TASK AT HAND stop going of on your weird tangents, focus on trying to implement binary search
The king of kings
yes like public bool MyBool() public string MyMethod() public int Deposit() and so on...
Pobiega
Pobiega2y ago
Why are you talking about that now? how is that relevant to your search method?
The king of kings
Yes, sorry 🤗
Pobiega
Pobiega2y ago
so again.. what is the trick behind binary search? what does it do?
The king of kings
it started from when you talked about returning method nevermind It compares & searches for the element and returns the index of that element when it finds it
Pobiega
Pobiega2y ago
well, thats what any search method does whats special about binary search?
The king of kings
good question it splits the list in half by comparing and it compares either on the left or right of the middle
Pobiega
Pobiega2y ago
yes!
The king of kings
not like Linear search where it iterates through the whole list until a match is hit Binary search is effective and fast compare to the Linear Think about if we have a million items in database how long will it take for the Linear search to iterate and find the target
Pobiega
Pobiega2y ago
... you dont need to "sell" binary search Okay, so we know how binary search works and what it should return So when we compare two values for the purpose of binary searching, we use Compare and it returns one of -1, 0, 1
The king of kings
Binary search it does a good job by splitting the halve million elements and gets easier and easier to search
Pobiega
Pobiega2y ago
Focus!
The king of kings
Yes I do
Pobiega
Pobiega2y ago
Last warning
The king of kings
hahaha
Pobiega
Pobiega2y ago
Can you post your current search code?
The king of kings
Of course I can
Pobiega
Pobiega2y ago
why do you have string as the return value?
The king of kings
because I'm searching for an element type string If I was searching for numbers it would've been int
Pobiega
Pobiega2y ago
Oh really? I thought we agreed that it should return the index of the element not the element itself
The king of kings
Oh 🤦‍♂️
Pobiega
Pobiega2y ago
Honestly it kinda feels like nothing we say sticks I have to say the same thing 200 times
The king of kings
I had a bad sleep last night, I may seem stupid to you. But my brain is not functioning well.
Pobiega
Pobiega2y ago
I explain in great detail why and you say "Ah yes, of course!" and then its gone the next second
The king of kings
Sorry for messing up sometimes It's just I'm not so used to complicated stuff yet
Pobiega
Pobiega2y ago
Im sorry to say that this isn't complicated stuff... types, return types, methods is... the foundational stuff
The king of kings
for you not for me it involves many stuff
Pobiega
Pobiega2y ago
But that doesnt mean this is complicated in terms of programming. This is the basics. Nevermind. Lets look at the code. First, why are you doing two comparisons?
The king of kings
But I know these concepts are less complex compare to advanced stuff
Pobiega
Pobiega2y ago
comparing values is the expensive part of a search algorithm, and you shouldn't need to compare more than once in a single cycle
The king of kings
Ok Well! The reason why I used both is because I was replacing these comparings.
Pobiega
Pobiega2y ago
you only need one. okay, so, we know Compare can return three different values positive, negative or zero
The king of kings
if (array[middle] == item)
return middle;

if (item < array[middle])
right = middle - 1;
else
left = middle + 1;
if (array[middle] == item)
return middle;

if (item < array[middle])
right = middle - 1;
else
left = middle + 1;
Pobiega
Pobiega2y ago
yeah, but thats not using a Compare method.
The king of kings
Yes
Pobiega
Pobiega2y ago
the comparions are however the same, we just need to call them slightly differently
The king of kings
Ok Thanks a lot for teaching me this part
Pobiega
Pobiega2y ago
so, you can use two ifs and an else to do this, as above.. but I think its a lot cleaner with a switch also, you should probably use StringComparer.OrdinalIgnoreCase.Compare instead of string.Compare
The king of kings
But when we apply Binary search in a list of integers, then we're using multiple comparisons for middle left and middle right, so in my case you mean we're doing both in one single method? Ok! We go with the switch approach then. What's the different then?
Pobiega
Pobiega2y ago
I think its time you start googling because you can compare integers directly for a 1,0,-1 result, you cant with strings
Anton
Anton2y ago
quick search rofl
The king of kings
Ok! How come you pick this one instead of the Compare() aren'r both for comparing strings and returning an int?
Pobiega
Pobiega2y ago
strings are way more complicated than they seem its not a huge difference, you can use either for now and it likely wont cause issues..
The king of kings
Ok! Interesting to know. Great I created the switch statement now you have already implemented the switch statement yesterday for my other project https://discord.com/channels/@me/998900826280042536/1100312126905663589
Pobiega
Pobiega2y ago
show it
The king of kings
public static int BinarySearch(List<string[]> haystack, string needle)
{
int left = 0;
int right = haystack.Count;

while (left <= right)
{
var middle = (left + right) / 2;
var midValue = haystack[middle][0];

if (midValue == needle)
return middle;

var diff = StringComparer.OrdinalIgnoreCase.Compare(needle, midValue);

switch (diff)
{
case > 0:
left = middle + 1;
break;
case < 0:
right = middle - 1;
break;
}
}

return -1;
}
public static int BinarySearch(List<string[]> haystack, string needle)
{
int left = 0;
int right = haystack.Count;

while (left <= right)
{
var middle = (left + right) / 2;
var midValue = haystack[middle][0];

if (midValue == needle)
return middle;

var diff = StringComparer.OrdinalIgnoreCase.Compare(needle, midValue);

switch (diff)
{
case > 0:
left = middle + 1;
break;
case < 0:
right = middle - 1;
break;
}
}

return -1;
}
Jimmacle
Jimmacle2y ago
why are you pulling an individual character out of your string? wait why is that a list of string arrays?
The king of kings
Although this algo implemented for integer values
Pobiega
Pobiega2y ago
faraj... thats my code thats literally the code I sent you two days ago
The king of kings
Yes
Pobiega
Pobiega2y ago
I didnt mean for you to show me MY code I meant for you to show your code.
The king of kings
I don't see any character in the code
Jimmacle
Jimmacle2y ago
List<string[]> haystack why is this like this?
Pobiega
Pobiega2y ago
because the assignment is insane
Jimmacle
Jimmacle2y ago
i missed the actual requirements i guess
Pobiega
Pobiega2y ago
they dont allow classes and force them to use string arrays to represent blog posts
Jimmacle
Jimmacle2y ago
gross so it's "fine," it's just that the first element is the title or something?
The king of kings
Yeah! Because this was required for me to use based on the assignment description.
Pobiega
Pobiega2y ago
yes
Jimmacle
Jimmacle2y ago
this is why i stopped pursuing higher education
The king of kings
Really, do they do it in the uni too.
Jimmacle
Jimmacle2y ago
i mean my college courses weren't much better but at least they introduced classes
The king of kings
Ok! Here is my code. Ok! Well! I guess it's different from school to school.
Jimmacle
Jimmacle2y ago
PepeHmmm
Pobiega
Pobiega2y ago
why is it still returning a string?! I actually give up I don't want to help anymore
The king of kings
I haven't write any code for the switch yet, we can go through it together. Take it easy man, I missed to remove it. It's not like I have written it on purpose. It's totally alright for me
Haze.
Haze.2y ago
I don't understand how this much confusion has arisen from a simple binary search
The king of kings
Do you call this a simple Binary search, are you kidding with me?
Haze.
Haze.2y ago
Binary search is relatively simple, yes Seeming as it is just coding an algorithm
The king of kings
I know it's just one basic context that you can apply the same principle for all projects, but implementing it to a list of strings using the Compare() or the String.Comparer() method made it a bit complicated.
Haze.
Haze.2y ago
Just a bit of documentation to read
The king of kings
I mean it's not that you just copy paste or write code and that's it, there are some things you need to learn in order to implement the algo. I am reading the docs currently
The king of kings
StringComparer Class (System)
Represents a string comparison operation that uses specific case and culture-based or ordinal comparison rules.
The king of kings
What the hell, there are many Compare methods not just one. would you be able to offer some help?
Haze.
Haze.2y ago
With? Also you may want to check if the list is sorted before trying to binary search Wait I just realised its a list of type string array, why is that
Anton
Anton2y ago
Have you been able to understand and implement the int version from scratch?
Jimmacle
Jimmacle2y ago
the project models blog posts as string arrays because classes are too complicated i guess external requirement so whatever part of the post is in the first element of the array is what's being searched for
The king of kings
Thank you guys for showing up, I really appreciate. Yes, it is sorted. By Bubble sort.
The king of kings
Gist
Program.cs
GitHub Gist: instantly share code, notes, and snippets.
The king of kings
above you can see the project that I have built so far without the Binary search that got me so much headache Yes, I think it's easier than applying to a strings. There's a ton of resources & tutorials and ther're all using dame a list of integers, bu tnot strings.
Jimmacle
Jimmacle2y ago
that's why he's asking if you fully understand it, because the concept is practically the same here you're just using a different strategy to compare the elements nothing else changes
The king of kings
I totally agree with you man. I'm not stupid, I can learn stuff, although I've five hours of sleep for the last two years and my brain is not very clear, but I hate giving up, I like coding, but it feels complicated sometimes not always. You mentioned something very interested here Using a different strategy is what makes it a bit hard for me to understand why? How? and so on... Plus this Compare() or String.Comparer() or ToCompare() this is hard for me to implement all alone that's why I need your help
The king of kings
IComparer.Compare(T, T) Method (System.Collections.Generic)
Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other.
The king of kings
basically you have two strings (variable x, variable y) and you can compare these two
Jimmacle
Jimmacle2y ago
it sounds like you may want to spend time thinking about how to break problems down into smaller problems once you get good at that it's a lot easier to adapt solutions to new problems because it becomes a matter of swapping out the parts that change and leaving everything else alone also, get more sleep because 5 hours a night isn't enough
The king of kings
Ok! I see your point.
JakenVeina
JakenVeina2y ago
works for me! wraffOK
The king of kings
My problem is just applying the Compare() method for binary search alphabetically that's all
JakenVeina
JakenVeina2y ago
alphabetically?
Jimmacle
Jimmacle2y ago
compare already compares alphabetically, you don't even have to be concerned with that that's why the process of comparing strings is abstracted behind a Compare method all you need to care about is that Compare tells you if a string is "less than" "more than" or "equal to" another string
The king of kings
Sorry, I meant strings. Sorry man, I remember you told me yesterday that I don't need to convert any char or search alphabetically, I meant applying Binary search to strings.
JakenVeina
JakenVeina2y ago
okay where we at with that? from what you had yesterday, it seemed you were well on-track
The king of kings
StringComparer.OrdinalIgnoreCase.Compare(x, y)
StringComparer.OrdinalIgnoreCase.Compare(x, y)
can you guys explain this line for me?
JakenVeina
JakenVeina2y ago
that compares the strings x and y for ordering
The king of kings
Yeah
JakenVeina
JakenVeina2y ago
using the OrdinalIgnoreCase instance of StringComparer meaning, comparison is ordinal, meaning (I think) ignoring accent marks and shit, and case-insensitive
The king of kings
Ok
JakenVeina
JakenVeina2y ago
and it returns a numeric value indicating the relative order of x and y
The king of kings
Ok
JakenVeina
JakenVeina2y ago
a negative number if x comes before y, a positive number if x coimes after y, and 0 if they are equivalent
The king of kings
Great explanation, thanks.
JakenVeina
JakenVeina2y ago
using case-insensitive comparison for BinarySearch is maybe not a good idea
The king of kings
Ok
JakenVeina
JakenVeina2y ago
it would mean if your list contains, say "value" and "VALUE" the search algorithm won't be able to tell the difference it could return either of them as the match
The king of kings
I s it because we need the case letters for our search?
JakenVeina
JakenVeina2y ago
the binary search algorithm is KINDA predicated on the assumption that the data you're searching doesn't contain any duplicate values and those two would count as duplicates if you're doing case-insensitive comparison
The king of kings
Ok
JakenVeina
JakenVeina2y ago
off the top of my head, the worst-case of this is that it'll just be arbitrary with of the duplicates it returns so, not the end of the world but still probably doesn't make much sense
The king of kings
So you were right, we would need the case-sensitive for our search
JakenVeina
JakenVeina2y ago
unless you're being instructed not to, yeah, I would recommend that StringComparer.Ordinal.Compare() or StirngComparer.CurrentCulture.Compare()
The king of kings
Awesome
Jimmacle
Jimmacle2y ago
afaik ordinal means it essentially compares the raw values of the characters without taking any capitalization or culture into account
JakenVeina
JakenVeina2y ago
The StringComparer returned by the Ordinal property performs a simple byte comparison that is independent of language.
The king of kings
I will use this method for my search, then I would use a switch statement for the returning
JakenVeina
JakenVeina2y ago
so, kinda the opposite of what I guessed above a "culture-aware" comparison would be the one that maybe treats accented characters and non-accented characters as equivalent, or nearly-equivalent a switch would work, yeah as would your if/else statements from yesterday
The king of kings
Awesome
The king of kings
Guys, since I couldn't debug my project, because I'm using VS on Mac and it doesn't display the main issue when I set breakpoint. So therefore, I need to ask you guys. https://gist.github.com/Programmer-Faraj/8963d73d17e16380e1ed108758e80270
Gist
Program.cs
GitHub Gist: instantly share code, notes, and snippets.
The king of kings
It's working well when doing the Binary search, but the issue is located where when I enter a wrong value, it still displaying the index which's weird.
Jimmacle
Jimmacle2y ago
if your debugger isn't working you need to figure that out you won't always be able to ask someone to debug for you on discord desk check your search method, run through it by hand and you'll see what the problem is it should be really clear what's wrong, at least the thing that i'm seeing is wrong wait... you removed your search parameter from your method? how is that supposed to work at all? what are you searching for? @Faraj ^
The king of kings
Ok! You're right. I need to practice solving problem skill just like logical skill. I agree with you. But why did they build the debug feature in the IDE if everyone could solve problem on their own? When I have a logical problem in like Binary search only skilled people like you guys can figure out where the bug is located.
Jimmacle
Jimmacle2y ago
i'm sorry but this isn't even a logical problem at this point the very first most basic step of solving a problem is knowing the inputs and the outputs if you don't see a problem with removing the most critical input to a search function, the thing you want to find, idk how to help you and binary search is not an algorithm that takes very much skill to understand
The king of kings
You're right. I missed this part. I should have passed a param and use the argument to search for the index of the list and I've done that earlier in my Linear search and I didn't pay attention 🤦‍♂️
The king of kings
that's why I was able to prompt that message of index is not found in my Linear search and in the Binary search. You're right. I am with your opinion with all the points you mentioned. I'm terrible at reading the pattern of the code and notice what is right or wrong implemented. I find the Binary search not complicated now as yesterday. learning coding is not so easy. I mean sometimes I get super happy when I implement a block of code without asking for help or when I'm making progress and sometimes I get so disappointed and frustrated when I get stuck and many people give up because of imposter syndrome at least not me. The thing is when you want to implement an algorithm or a certain block of code, I go and look at StackOverflow and I see people have implemented the same block, but in many different patterns or contexts, so it's hard to be able to understand all these patterns, but not for skilled people like you guys.
Omnissiah
Omnissiah2y ago
this looks like a little wtf to me
CENSORED
CENSORED
Jimmacle
Jimmacle2y ago
i wanted him to see that himself because yes, that's obviously wrong
Omnissiah
Omnissiah2y ago
agreed
The king of kings
I'll modify the code and try and fix the bug
Anton
Anton2y ago
ordinal just compares the codes
The king of kings
I thought the Compare() is doing this job
The king of kings
Bingo
The king of kings
I was able to fix the bug yahoooo Although, I noticed one sensitive issue.
The king of kings
when I used the method in this context
Ordinal
Ordinal
the compiler was throwing out of range exception on this line of code.
The king of kings
but when I changed it to this
OrdinalIgnoreCase
OrdinalIgnoreCase
this time the CLI freezes when inputing capital case letters like C# instead of c# I wondered why? I think this is exactly what happens currently in my project, you were right. The thing is if I don't use the Ignore case, then I'll have to figure out some way to apply try catch exception handling to handle the
ArgumentOutOfRangeException
ArgumentOutOfRangeException
Jimmacle
Jimmacle2y ago
no, you don't just throw try catches at exceptions figure out why it's throwing an exception and decide if that means there is another problem with your code
The king of kings
Ok That's a fair assumption I think -1 is the boundary of our list like we use this if the search algorithm tries to iterate outside the boundary of a list am I right or wrong? just for the sake of learning
Jimmacle
Jimmacle2y ago
yes, but the exception isn't being thrown at that point in the code what does ArgumentOutOfRangeException mean on that line?
The king of kings
Aha! Ok! Well it says the index was out of range, it means when we tried to compare and search for the element the index of the element entered by the user is outside of the list boundary this is how I understood. Because for me it seems to me that the issue is not that the searched index fails to hit the target or find the index of the element.
Jimmacle
Jimmacle2y ago
when does the user enter an index of an element? you don't know the index of the element the user wants, that's why you're searching for it so somehow your middle is getting pushed outside the bounds of your list which shouldn't be allowed to happen either that or one or more of the arrays in the list has no elements
JakenVeina
JakenVeina2y ago
That is utter nonsense. Case-sensitive comparison is not causing you to get an Exception. what fixed said: you're receiving an exception because you tried to access the list, with an index that is out-of-bounds for the list like, maybe -1 or 2, when the list's size is 2 the index is something YOU calculated not the user
JakenVeina
JakenVeina2y ago
so how did YOU come up with that index
Jimmacle
Jimmacle2y ago
afaik he figured this one out and moved on
JakenVeina
JakenVeina2y ago
:/ why make a new thread?
Jimmacle
Jimmacle2y ago
¯\_(ツ)_/¯
Haze.
Haze.2y ago
There's been multiple threads this has spanned across
Accord
Accord2y ago
Was this issue resolved? If so, run /close - otherwise I will mark this as stale and this post will be archived until there is new activity.
Want results from more Discord servers?
Add your server