Sorry the example should be

file1 = sec2 -> sec7->sec9 -> sec11 -> null
file2 = sec10 -> sec12-> null

as first sector contains the file information.

google don't hear DFS or linear parsing, give me the code ;)

On May 27, 11:28 am, Atul Kumar <atul...@gmail.com> wrote:
> There is a file system on the disc. the disc has many sectors. Always
> the first sector has the information about all the files.
>
> A file data is divided into sectors. Each sector can have data from a
> single file.
>
> Each sector has 2 parts, data and the pointer to the next sector of
> the file. Every last sector in the file has next pointer as null.
>
> say a disk has 18 sectors numbered 1 to 18.
>
> then the first sector would have this information about the file.
>
> file1 = sec1 -> sec7->sec9 -> sec11 -> null
> file2 = sec10 -> sec12-> null
>
> etc.
>
> Now the first sector has some error. write an algo to reconstruct the
> file information in the first sector.
> Write code in C.

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to algoge...@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to