Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TDIU20
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cpp-programmering
TDIU20
Commits
b3f19a83
Commit
b3f19a83
authored
1 year ago
by
Adrian Smaka
Browse files
Options
Downloads
Patches
Plain Diff
Delete linked_list.h 3
parent
851fad43
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
linked_list.h 3
+0
-34
0 additions, 34 deletions
linked_list.h 3
with
0 additions
and
34 deletions
linked_list.h 3
deleted
100644 → 0
+
0
−
34
View file @
851fad43
#include<iostream>
using namespace std;
class List {
public:
List();
~List();
void Insert_Head_Node(int value);
void Insert_Tail_Node(int value);
bool List_Is_Empty();
class Node {
public:
int value;
Node* next{nullptr};
Node* previous{nullptr};
Node(int new_value);
};
Node* head{nullptr};
Node* tail{nullptr};
int lilinked_lisst_size {};
void printlist(Node* head);
};
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment