With the knowledge of linked lists, please help me convert this java code into simple pseudocode & a flowchart

Viewed 29
import java.util.*;

public class Main {

public static void main(String[] args) {

LinkedList playlist = new LinkedList();

playlist.add("song1"); playlist.add("song2"); playlist.add("song3"); playlist.add("song4"); playlist.add("song5");

playlist.remove("song3");

for(String song: playlist) {

System.out.println(song); } } }
0 Answers
Related