यहां हम देखेंगे कि लिंक की गई सूची में संग्रहीत संख्या के साथ 1 कैसे जोड़ा जाए। लिंक की गई सूची में, संख्याओं के प्रत्येक अंक को संग्रहीत किया जाता है। यदि संख्या 512 है, तो इसे नीचे की तरह संग्रहीत किया जाएगा -
512 = (5)-->(1)-->(2)-->NULL
हम वृद्धि समारोह में सूची प्रदान कर रहे हैं। इसके साथ 1 जोड़ने के बाद वह दूसरी सूची लौटाएगा। यहां हम C++ STL लिंक्ड लिस्ट का उपयोग कर रहे हैं। आइए बेहतर विचार पर दांव लगाने के लिए एल्गोरिथम देखें।
एल्गोरिदम
incrementList(l1)
Begin carry := 1 res := an empty list for each node n from l1, scan from last to first, do item := (l1.item + carry) mod 10 insert item at the beginning of res carry := (l1.item + carry) / 10 done if carry is not 0, then add carry at the beginning of res end if return res End
उदाहरण
#include<iostream> #include<list> using namespace std; list<int> incListNum(list<int> l1){ list<int>::reverse_iterator it1 = l1.rbegin(); list<int> result; int carry = 1; //this 1 will be added while(it1 != l1.rend()){ result.push_front((*it1 + carry) % 10); carry = (*it1 + carry) / 10; it1++; } if(carry != 0){ result.push_front(carry); } return result; } list<int> numToList(int n){ list<int> numList; while(n != 0){ numList.push_front(n % 10); n /= 10; } return numList; } void displayListNum(list<int> numList){ for(list<int>::iterator it = numList.begin(); it != numList.end(); it++){ cout<<*it; } cout << endl; } int main() { int n1 = 9999; list<int> n1_list = numToList(n1); list<int> res = incListNum(n1_list); cout << "The number: "; displayListNum(n1_list); cout << "Result: "; displayListNum(res); }
आउटपुट
The number: 9999 Result: 10000