Initial commit
This commit is contained in:
commit
15c381aaae
19 changed files with 828 additions and 0 deletions
25
reverse_string.c
Normal file
25
reverse_string.c
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
/*----------------------------------------------------------
|
||||
* HTBLA-Leonding / Class: <your class>
|
||||
* ---------------------------------------------------------
|
||||
* Title: Reverse String
|
||||
* Author: */ your name /*
|
||||
* ----------------------------------------------------------
|
||||
* Description:
|
||||
* Recursive and iterative implementation of an algorithm that
|
||||
* reverses a given string.
|
||||
* ----------------------------------------------------------
|
||||
*/
|
||||
|
||||
/*
|
||||
Instructions:
|
||||
|
||||
Define a function reverse_string(s) that takes a string `s` as input.
|
||||
Take the last character of `s` and concatenate it with the result of reversing the rest of the string until the string has less than two characters.
|
||||
|
||||
Note that strings that are stored on heap or stack are provided - they can be directly manipulated.
|
||||
|
||||
*/
|
||||
|
||||
// TODO: the recursive implementation
|
||||
|
||||
// TODO: the iterative implementation
|
||||
Loading…
Add table
Add a link
Reference in a new issue