Método Scala Stack intersect() con ejemplo

En Scala Stack class, el método intersect() se utiliza para devolver una nueva pila que consta de elementos que están presentes en ambas pilas dadas.

Definición del método: def intersect[B >: A](that: collection.Seq[B]): Stack[A]

Tipo de devolución: devuelve una nueva pila que consta de elementos que están presentes en ambas pilas dadas.

Ejemplo 1:

// Scala program of intersect() 
// method 
  
// Import Stack 
import scala.collection.mutable._
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating stacks  
        val s1 = Stack(1, 3, 2, 7, 6, 5) 
          
        val s2 = Stack(1, 13, 2, 17, 6, 15)
          
        // Print the stack 
        println("Stack_1: " + s1) 
            
        println("Stack_2: " + s2)
            
        // Applying intersect method  
        val result = s1.intersect(s2) 
          
        // Display output 
        print("The elements in both the stacks: ") 
            
        result.foreach(x => print(x + " "))
          
    } 
} 
Producción:

Stack_1: Stack(1, 3, 2, 7, 6, 5)
Stack_2: Stack(1, 13, 2, 17, 6, 15)
The elements in both the stacks: 1 2 6

Ejemplo #2:

// Scala program of intersect() 
// method 
  
// Import Stack 
import scala.collection.mutable._
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating stacks  
        val s1 = Stack(1, 3, 2, 7, 6, 5) 
          
        val s2 = Stack(11, 3, 12, 7, 16, 5)
          
        // Print the stack 
        println("Stack_1: " + s1) 
            
        println("Stack_2: " + s2)
            
        // Applying intersect method  
        val result = s1.intersect(s2) 
          
        // Display output 
        print("The elements in both the stacks: " + result) 
         
    } 
} 
Producción:

Stack_1: Stack(1, 3, 2, 7, 6, 5)
Stack_2: Stack(11, 3, 12, 7, 16, 5)
The elements in both the stacks: Stack(3, 7, 5)

Publicación traducida automáticamente

Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *