Rafael Arce Nazario 4 vuotta sitten
vanhempi
commit
e495204f83
1 muutettua tiedostoa jossa 0 lisäystä ja 6 poistoa
  1. 0
    6
      main.cpp

+ 0
- 6
main.cpp Näytä tiedosto

@@ -328,10 +328,4 @@ TEST_CASE( "BST is tested", "[BST]" ) {
328 328
     for (auto e: v) B.insert(e);
329 329
     REQUIRE (B.InOrder() == "1 2 4 5 8 9 10 ");
330 330
     REQUIRE (B.BFS() == "8 5 9 2 10 1 4 ");
331
-
332
-
333
-//    REQUIRE( infix2Postfix("(3 + 4) * 9") == "3 4 + 9 *" );
334
-//    REQUIRE( infix2Postfix("3 + 4 * 9") == "3 4 9 * +" );
335
-//    REQUIRE( infix2Postfix("3 + 4 * (9 + 5)") == "3 4 9 5 + * +" );
336
-//    REQUIRE( infix2Postfix("(3 + 4) * (9 + 5)") == "3 4 + 9 5 + *" );
337 331
 }