Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,851 questions

51,772 answers

573 users

How to insert an element at the beginning of a stream in Java

2 Answers

0 votes
import java.util.Arrays;
import java.util.stream.Stream;

public class MyClass {
    public static<T> Stream<T> InsertAtBeginning(Stream<T> stream, T element) {
        return Stream.concat(Stream.of(element), stream);
    }
 
    public static void main(String[] args)
    {
        Stream<Integer> st = Stream.of(2, 5, 8, 4, 3);
        
        st = InsertAtBeginning(st, 99);
 
        System.out.println(Arrays.toString(st.toArray()));
    }
}
 
 
 
 
/*
run:
 
[99, 2, 5, 8, 4, 3]

*/

 



answered Mar 16, 2023 by avibootz
0 votes
import java.util.Arrays;
import java.util.List;
import java.util.Collection;
import java.util.stream.Stream;
import java.util.stream.Collectors;

public class MyClass {
    public static<T> Stream<T> InsertAtBeginning(Stream<T> stream, T element) {
        List<T> result = stream.collect(Collectors.toList());
        result.add(0, element);
 
        return result.stream();    
    }
 
    public static void main(String[] args)
    {
        Stream<Integer> st = Stream.of(2, 5, 8, 4, 3);
        
        st = InsertAtBeginning(st, 99);
 
        System.out.println(Arrays.toString(st.toArray()));
    }
}
 
 
 
 
/*
run:
 
[99, 2, 5, 8, 4, 3]

*/

 



answered Mar 16, 2023 by avibootz

Related questions

2 answers 212 views
2 answers 134 views
1 answer 218 views
2 answers 209 views
1 answer 113 views
1 answer 165 views
1 answer 142 views
...