Algorithms and Data structure
26 subscribers
81 photos
3 videos
6 files
2 links
Download Telegram
Multidimensional array in java
Every array has an associated Class object, shared with all other arrays with the same component type. @Algorithm_s1 #java
This method searches a range of the specified array for the specified object using the binary search algorithm. @Algorithm_s1 #java
Multidimensional array in java @Algorithm_s1 #java
String in c++ @Algorithm_s1 #cpp
Non-pripitive data structure @Algorithm_s1
Pointers in C++ are symbolic representations of addresses. They enable programs to simulate call-by-reference as well as to create and manipulate dynamic data structures. By using pointers we can get the first character of the string, which is the starting address of the string. As shown below, the given string can be accessed and printed through the pointers.@Algorithm_s1 #cpp
Update character in python @Algorithm_s1 #python
In this example, we will first slice the string up to the character that we want to delete and then concatenate the remaining string next from the deleted character. #python @Algorithm_s1
add node to LINKEDLIST @Algorithm_s1