#include <iostream>
using namespace std;
// Vectorul a memorează n numere întregi și este indexat de la 0 la n-1. Funcția va crea o listă simplu înlănțuită care să memoreze în nodurile sale cele n numere întregi din vector, în ordinea în care se află în a. Pointerul head va memora în final adresa primului nod din listă.
struct nod
{
int info;
nod *urm;
};
nod *aloca_nod(int val)
{
// malloc returnează (void *)
// care înseamnă un pointer către o adresă de memorie
// însă nedefinită ca tip (nu știm dacă este nod, int, char...)
// de aceea, trebuie să facem un type conversion (să convertim tipul de date)
// în cazul nostru, de la void * la nod *
nod *elem = (nod *)malloc(sizeof(nod));
// malloc poate să eșueze, caz în care returnează NULL
if (elem == NULL)
{
return NULL;
}
// acum știm că malloc ne-a dat o porțiune validă de memorie
// inițializăm elementul
// elem
// [ info | urm ]
// inițializăm info cu val (parametrul metodei)
// inițializăm urm cu NULL (nu are element următor)
elem->info = val;
elem->urm = NULL;
// returnăm noul nod
return elem;
}
void MakeList(nod *&head, int a[], int n)
{
// creăm o nouă listă
// cu toate cele n elemente din vector a
// iar la sfârșit punem head ca primul element
// TLista head
// TNod *head
nod *prev = NULL;
for (int i = 0; i <= n - 1; i++)
{
// vrem, pt fiecare element al vectorului
// să alocăm memorie pt un nou nod
// cu valoarea elementului curent din vectorul a
// (adică a[i])
// am alocat memorie pt un nou nod
nod *newNod = aloca_nod(a[i]);
// l-am lipit pe prev (nodul precedent) de acesta
if (prev)
{
// dacă nu e NULL
// următorul lui prev va fi newNod
prev->urm = newNod;
}
else
{
// prev este NULL
// atunci tocmai ce am creat primul element al listei
head = newNod;
}
prev = newNod;
}
}
int main()
{
int a[] = {1, 2, 3, 4, 5, 6, 7, 8};
int n = 8;
nod *head;
MakeList(head, a, n);
return 0;
}
Benefits of TheCodeground Online IDE
Multi-Language Support
TheCodeground Online IDE supports C++, Java, Node.js, Python, and more, making it an incredibly versatile tool for diverse coding needs. This extensive language support allows developers to work on different projects within a single platform.
Real-Time Collaboration
Our real-time collaboration feature enables multiple developers to work on the same project simultaneously, enhancing teamwork and productivity. This feature is particularly beneficial for remote teams and pair programming sessions.
User-Friendly Interface
Designed with a clean and intuitive interface, TheCodeground Online IDE simplifies coding and debugging processes, making it accessible for users of all skill levels. The ease of use and clear navigation ensure a smooth coding experience.
Instant Code Execution
Experience fast and efficient code execution with immediate feedback in the integrated terminal. This feature helps streamline the development process, allowing developers to quickly test and debug their code.
Free to Use
Enjoy the full range of features at no cost. TheCodeground Online IDE is completely free, providing a valuable resource for developers without any subscription fees. This makes it an ideal choice for students, hobbyists, and professionals alike.
Cloud-Based Platform
As a cloud-based IDE, TheCodeground allows you to access your projects from anywhere, at any time. This flexibility ensures that you can continue coding without being tied to a specific device or location.
Customizable Environment
Tailor the IDE to your preferences with customizable themes, layouts, and extensions. This personalization ensures a comfortable and productive coding environment.
Why Choose TheCodeground Over Other Online IDEs?
TheCodeground Online IDE stands out from the competition with its comprehensive feature set, ease of use, and cost-effectiveness. Unlike many other online IDEs that require subscriptions or offer limited free plans, TheCodeground provides all its features for free. Our multi-language support, real-time collaboration, and advanced debugging tools ensure that you have everything you need for effective development. Additionally, our user-friendly interface and customizable environment make coding a pleasant experience, regardless of your expertise level. Choose TheCodeground Online IDE for a seamless, efficient, and enjoyable coding experience.