Find the Sum of Last N nodes of the Linked List | GFG POTD 23 Oct 2024 | JAVA | C++

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 พ.ย. 2024

ความคิดเห็น • 2

  • @ajinkyajain2302
    @ajinkyajain2302  14 วันที่ผ่านมา

    C++ Code :
    int sumOfLastN_Nodes(struct Node* head, int n) {
    // Code here
    int i = 0;
    Node* temp = head;
    // Move temp n steps ahead
    while (i < n) {
    if (temp == nullptr) {
    cout data;
    current = current->next;
    }
    return sum;
    }