Tech & AI Automation
Open in Telegram
Hello friends this Channel is for you tech and ai automation lovers 😁 #coding #programming #programmer #developers #developer #cprogramming #python #cpp #java #javascript #backenddeveloper #ai #automation #n8n
Show more1 328
Subscribers
+224 hours
No data7 days
No data30 days
Posts Archive
1 328
Hi guys 🔥 here is a DEMO of the WEBSITE BUILDER i'm developing ❤️
I'm sure you'll like it 😄
1 328
Hi guys 🔥 what do you think about a web builder, also known as a website builder, a tool or software that allows individuals or businesses to create websites without the need for extensive coding knowledge or technical skills. It is designed to simplify the process of website creation by providing pre-designed templates and drag-and-drop functionality.
Web builders generally offer a visual interface where users can customize their websites by selecting templates, adding elements like text, images, and videos, and rearranging them as desired.
1 328
Hi guys 🔥 if you are a beginners, intermediate or expert, i think this i'll help you
1 328
🛑🛑🛑🛑🛑🛑🛑🛑🛑
Hi friends i'm the group admin here is a link to a folder that contains all the tutorials you need and resources you need to develop your programming skills .
so fill the Google form and a link to the folder will be send to you . 👇👇👇👇
https://docs.google.com/forms/d/e/1FAIpQLSeGfORiaXkPMN3m-htiVEtcK2SFUj91syfqQMzAS1kkDnZAVw/viewform?usp=pp_url
1 328
You can ask your questions in comment
Next algorithm is Comming soon ...... 🏃
1 328
// C code to implement quicksort
#include <stdio.h>
// Function to swap two elements
void swap(int* a, int* b)
{
int t = *a;
*a = *b;
*b = t;
}
// Partition the array using the last element as the pivot
int partition(int arr[], int low, int high)
{
// Choosing the pivot
int pivot = arr[high];
// Index of smaller element and indicates
// the right position of pivot found so far
int i = (low - 1);
for (int j = low; j <= high - 1; j++) {
// If current element is smaller than the pivot
if (arr[j] < pivot) {
// Increment index of smaller element
i++;
swap(&arr[i], &arr[j]);
}
}
swap(&arr[i + 1], &arr[high]);
return (i + 1);
}
// The main function that implements QuickSort
// arr[] --> Array to be sorted,
// low --> Starting index,
// high --> Ending index
void quickSort(int arr[], int low, int high)
{
if (low < high) {
// pi is partitioning index, arr[p]
// is now at right place
int pi = partition(arr, low, high);
// Separately sort elements before
// partition and after partition
quickSort(arr, low, pi - 1);
quickSort(arr, pi + 1, high);
}
}
// Driver code
int main()
{
int arr[] = { 10, 7, 8, 9, 1, 5 };
int N = sizeof(arr) / sizeof(arr[0]);
// Function call
quickSort(arr, 0, N - 1);
printf("Sorted array: \n");
for (int i = 0; i < N; i++)
printf("%d ", arr[i]);
return 0;
}
1 328
QuickSort is a sorting algorithm based on the Divide and Conquer algorithm that picks an element as a pivot and partitions the given array around the picked pivot by placing the pivot in its correct position in the sorted array.
1 328
You can ask your questions in comment
Next algorithm is Comming soon ...... 🏃
