Hello! I have been assigned a project to implement arrays, linked list and hashing using SFML on visual studio. I have applied the required setting for sfml on my visual studio.
A data structure is just data and algorithms used on that data. SFML is a multimedia library. The two are orthogonal.
Are you saying you want a visual representation of data structures using SFML?
Before trying to combine data structures and SFML, the first thing would be to make sure you understand them independently. Have you written data structures, like your own linked list? And do you know how to draw basic shapes using SFML? I would take those two topics separately, practice with it, and then once you understand them as separate concepts, attempt to combine them.
I'm also not sure what "implementing" an array even means, unless you mean the visual representation of it, which could just mean a row a rectangles that you then draw. If anything, I would start with that: Just draw N rectangles in a row in SFML.