Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions app/sem2/dsc/[chapter]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { Ch3Content } from "../content/chapter3";
import { Ch4Content } from "../content/chapter4";
import { Ch5Content } from "../content/chapter5";
import { Ch6Content } from "../content/chapter6";
import { Ch7Content } from "../content/chapter7";

import { ArrowBigLeft, ArrowBigRight } from "lucide-react";
import { moduleQuizzes } from "@/lib/quizData";
Expand All @@ -29,6 +30,7 @@ const chapters = [
{ id: "ch4", title: "Queues", component: Ch4Content },
{ id: "ch5", title: "Trees", component: Ch5Content },
{ id: "ch6", title: "Graphs", component: Ch6Content },
{ id: "ch7", title: "Searching", component: Ch7Content },
];

type ChapterProps = {
Expand Down
1 change: 1 addition & 0 deletions app/sem2/dsc/components/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export default function Sidebar() {
{ id: "ch4", title: "Queues" },
{ id: "ch5", title: "Trees" },
{ id: "ch6", title: "Graphs" },
{ id: "ch7", title: "Searching" },
];

const quizSlugMap: Record<string, string> = {
Expand Down
9 changes: 9 additions & 0 deletions app/sem2/dsc/content/chapter0.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,17 @@ export const Ch0Content = () => {
<section>
<h3 className="section-heading">Module VII: Searching</h3>
<ul className="section-list">
<li>Introduction to Searching</li>
<li>Need for Searching</li>
<li>Characteristics of Searching</li>
<li>Linear Search</li>
<li>Sentinel Linear Search</li>
<li>Binary Search</li>
<li>Recursive Binary Search</li>
<li>Comparison of Searching Techniques</li>
<li>Complexity Analysis of Searching Techniques</li>
<li>Applications of Searching</li>
<li>Advantages and Limitations</li>
</ul>
</section>

Expand Down
Loading