Skip to content
This repository has been archived by the owner on Sep 15, 2024. It is now read-only.

Commit

Permalink
Embedded slist (#17)
Browse files Browse the repository at this point in the history
* embedded list

* update tests

* update
  • Loading branch information
Sunrisepeak authored May 22, 2024
1 parent 275fdb4 commit 485c2cd
Show file tree
Hide file tree
Showing 12 changed files with 1,177 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
book
.xmake
build
build
.vscode
23 changes: 23 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,28 @@
"**/.vscode": true,
"**/build": true,
"/.xmake": true
},
"files.associations": {
"array": "cpp",
"string": "cpp",
"string_view": "cpp",
"deque": "cpp",
"list": "cpp",
"*.tcc": "cpp",
"hash_map": "cpp",
"unordered_map": "cpp",
"vector": "cpp",
"functional": "cpp",
"optional": "cpp",
"ratio": "cpp",
"system_error": "cpp",
"tuple": "cpp",
"type_traits": "cpp",
"utility": "cpp",
"istream": "cpp",
"ostream": "cpp",
"chrono": "cpp",
"compare": "cpp",
"cstddef": "cpp"
}
}
10 changes: 10 additions & 0 deletions exercises/linked-list/EmbeddedList.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#ifndef EMBEDDED_LIST_HPP_D2DS
#define EMBEDDED_LIST_HPP_D2DS

namespace d2ds {
// show your code


}

#endif
Loading

0 comments on commit 485c2cd

Please sign in to comment.