From c361f81af49cbe65128feec925d37fd7f8b8d70d Mon Sep 17 00:00:00 2001
From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
Date: Wed, 2 Feb 2022 05:44:41 +0000
Subject: [PATCH] Documentation for 543d6e01353d01f2499a795c750502a00d7f92af
---
da/dc3/linked__list_8cpp.html | 87 ++++++++++++++++++-----------------
1 file changed, 45 insertions(+), 42 deletions(-)
diff --git a/da/dc3/linked__list_8cpp.html b/da/dc3/linked__list_8cpp.html
index a082a41fe..6bebadbac 100644
--- a/da/dc3/linked__list_8cpp.html
+++ b/da/dc3/linked__list_8cpp.html
@@ -215,49 +215,52 @@ Here is the call graph for this function:
235 switch (choice) {
- 236 case 1:
- 237 std::cout <<
"\nEnter the element to be inserted : ";
-
- 239
- 240 if (data_structures::linked_list::isDigit(s)) {
-
-
- 243 } else {
-
- 245 }
- 246 break;
- 247 case 2:
- 248 std::cout <<
"\nEnter the element to be removed : ";
-
- 250 if (data_structures::linked_list::isDigit(s)) {
-
-
- 253 } else {
-
- 255 }
- 256 break;
- 257 case 3:
- 258 std::cout <<
"\nEnter the element to be searched : ";
-
- 260 if (data_structures::linked_list::isDigit(s)) {
-
-
-
- 264 } else {
-
- 266 }
- 267 break;
- 268 case 4:
-
-
- 271 break;
- 272 default:
-
+ 236 case 0:
+ 237 std::cout <<
"\nQuitting the program...\n";
+ 238 break;
+ 239 case 1:
+ 240 std::cout <<
"\nEnter the element to be inserted : ";
+
+ 242
+ 243 if (data_structures::linked_list::isDigit(s)) {
+
+
+ 246 } else {
+
+ 248 }
+ 249 break;
+ 250 case 2:
+ 251 std::cout <<
"\nEnter the element to be removed : ";
+
+ 253 if (data_structures::linked_list::isDigit(s)) {
+
+
+ 256 } else {
+
+ 258 }
+ 259 break;
+ 260 case 3:
+ 261 std::cout <<
"\nEnter the element to be searched : ";
+
+ 263 if (data_structures::linked_list::isDigit(s)) {
+
+
+
+ 267 } else {
+
+ 269 }
+ 270 break;
+ 271 case 4:
+
+
274 break;
- 275 }
- 276 } while (choice != 0);
- 277 return 0;
- 278}
+ 275 default:
+
+ 277 break;
+ 278 }
+ 279 } while (choice != 0);
+ 280 return 0;
+ 281}