Insert into a sorted linked list MEDIUM Liste stive cozi (BAC) 25 XP 0 solved
Mobile coding works. A laptop is faster for long sessions.

Problem

A natural number `N` is read, followed by `N` integer values read one at a time. Build a **singly linked list** with dynamic allocation such that after each insertion the list remains sorted in **ascending order**. For equal values, the relative order does not matter. At the end, print the values in the list by traversing it from head to tail, separated by single spaces, followed by a newline. Use a structure `Node { int val; Node* next; }` with `new` for allocation. Do not use STL containers.

Input format

Input input.txt

The first line contains `N`. The second line contains the `N` values separated by spaces. - `1 <= N <= 1000`; - values are integers, `-1_000_000 <= val <= 1_000_000`.

Output format

Output output.txt

The program prints on a single line the values from the list in ascending order, separated by single spaces.

Example

input
5

3 1 4 1 5
output
1 1 3 4 5

Ready to solve this challenge?

Create a free account to write code, submit solutions, and track your progress.

⌨️ Keyboard Shortcuts

Code Editor
Run Code
Ctrl Enter
Submit Code
Ctrl Shift Enter
Format Code
Shift Alt F
Toggle Comment
Ctrl /
Undo
Ctrl Z
Redo
Ctrl Y
Navigation
Global Search
/
Show Shortcuts
?
Close Modal
Esc

🔍 Interactive Debugger

0 / 0

Analyzing your code...

📦 Variables

No variables yet

📚 Call Stack
main() line 1
📤 Output
We use cookies

Essential cookies are always active. You can choose to enable preference and analytics cookies. Learn more