singly-linked-list

    1熱度

    3回答

    我正在閱讀算法以刪除單個鏈接列表中的最後一個元素。 假設我有一個鏈表對象調用ListNode: public class ListNode { private int data; private ListNode next; public ListNode(int data) { this.data = data; } public

    1熱度

    2回答

    我有一個列表: 1-2-3-3-4-5-6-6-2-7-8-6-9-10-9-NULL // Before 我Wnt信號,使其如下: 1-2-3-4-5-6-7-8-9-10空//後 我已經寫了下面的代碼: void don(struct node *head) { struct node *t,*p,*q; t=head; p=t->next;//p is to check each n

    0熱度

    2回答

    我已經爲字符串類型編寫了一個單獨排序的鏈接列表。 讓我告訴你我必須做什麼。 有詞要存儲在排序後的鏈接列表中。 每個單詞都有一些變化(或意義FYI),也需要存儲在單獨排序的鏈接列表中。 因此,基本上鍊表中的每個單詞都有鏈接的變體列表。 問題是如何連接它們。 我的意思是,刪除單詞時也會刪除它們的變體。 任何幫助,將不勝感激。 預先感謝您。 更新: 下面是整理的LinkedList: public cl

    0熱度

    1回答

    #include<iostream> #include<stdlib.h> #include<conio.h> #include <ctime> #include <fstream> #include <windows.h> #include <string> using namespace std; /* data variable is used to store data

    -1熱度

    1回答

    我目前正在研究一個學校的哈希表項​​目,我遇到了一個問題,我不知道。我的教授向我們提供了具有我們需要實現的功能的類,並且這些函數使用了模板。 無論如何,在我的插入函數中,我遇到了一個問題,即在我用來實現散列表的單鏈表結構中設置一個節點的值。 我的問題是這樣的: void insert(U item1, U item2){ //For my project U is a string No

    0熱度

    1回答

    名字和RUID從read.txt閱讀,如果它在 read.txt找到字符串「RUID」,你需要創建一個新的LinkedList存儲以下 RUID和名稱(有多個RUID在字符串),讀完 所有read.txt元素,使用操作符重載+連接 linkedlists在一起 這是什麼正在問我的。我已經知道如何打開文本文件並設法做其他事情,包括操作符重載。我只是困惑,我應該如何去嘗試從文本文件中獲取信息並將其存儲

    1熱度

    1回答

    我想實現一個模板單鏈表,我是相當新的C++ #include <iostream> #include <string> #define NEWL "\n" #define PRINT(s) std::cout << s #define PRINTL(s) std::cout << s << NEWL #define PRINTERR(e) std::cerr << e << NEWL

    1熱度

    2回答

    我一直在嘗試從頭開始創建一個僅接受字符串的排序鏈接列表,但在插入時對其進行排序。這裏是我當前的代碼: import java.util.Arrays; public class SortedLinkedList { private StringNode head = null; /** * Default Constructor for a sorted li

    0熱度

    1回答

    有人可以指向正確的方向嗎?錯誤說head在這一行不宣:newNode1 -> next = head; typedef struct _node { int data; struct _node *next; } node_t; typedef struct { node_t *head; node_t *tail; } LL_t; //Post

    1熱度

    2回答

    您能否澄清爲什麼我的代碼不總是刪除鏈表中所有值等於方法參數中給定值的值?我應該如何解決它?它通過了97%的測試案例。我更喜歡修復這個問題,而不是使用prev/next/dummy指針改變整個方法。 /** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next;