По разделам

 

Решение задачи File 19


Данфайлвещественныхчисел.Найтиегопоследнийлокальныймаксимум (локальным максимумом называется элемент, который больше своих соседей).

Код (Python)

import random

def GenerateLine(fname):
    N = random.randrange(1,10)
    print("N = ",N)
    #N = 2
    #line = "1, 5, 5, 5, 4, 4, 5"
    try:
        f = open(fname, "w")
        try:
            for i in range(N):
                line = str(random.randint(1,4))+"\n"
                f.write(line)
        finally:
            f.close()
    except IOError:
        print('Write error: ',fname)

f_input = "file19_input.txt"
GenerateLine(f_input)

i = 0
flag = False
try:
    with open(f_input,'r') as f_in:
        for line in f_in:
            i += 1
            x = int(line.strip())
            print(x)    
            if i == 1:
                x1 = x
            elif i == 2:
                x2 = x
            elif i == 3:
                x3 = x
                if x3 >= x2:
                    l_max_prev = x3
                elif x1 <= x2 and x2 > x3:
                    l_max_prev = x2
                else:
                    l_max_prev = x1
            else:
                x1 = x2
                x2 = x3
                x3 = x
                if x3 >= x2:
                    l_max_next = x3
                elif x1 <= x2 and x2 > x3:
                    l_max_next = x2
                else:
                    l_max_next = l_max_prev

except IOError:
    print('Open error: ',f_source)
        
if i == 1:
    l_max = x1
elif i == 2:
    if x1 > x2:
        l_max = x1
    else:
        l_max = x2
elif i == 3:
    l_max = l_max_prev
else:
    l_max = l_max_next
    
print("Last local maximum:",l_max)
									

Код (Pascal)

program File19;
var
 S:String;
 F_in,F_out: File of Real;
 El2,El1,El,LocMax:Real;
begin
  Write('File: ');
  Readln(S);
  Assign(F_in,S);
  Reset(F_in);
  Read(F_in,El1);
  Read(F_in,El);
  El2:=El1;
  if (El1>El) then LocMax:=El1;
  while (not eof(F_in)) do
   begin
    El2:=El1;
    El1:=El;
    Read(F_in,El);
    if (El<El1) and (El1>El2) then LocMax:=El1;
   end;
  if El1<El then LocMax:=El;
  Writeln(LocMax);
  Close(F_in);
end.
									




File. Абрамян
File 1 Просмотров: 4642
File 2 Просмотров: 3922
File 3 Просмотров: 1867
File 4 Просмотров: 2379
File 5 Просмотров: 1792
File 6 Просмотров: 1596
File 7 Просмотров: 1405
File 8 Просмотров: 1863
File 9 Просмотров: 1115
File 10 Просмотров: 1633
File 11 Просмотров: 1144
File 12 Просмотров: 1291
File 13 Просмотров: 1121
File 14 Просмотров: 1008
File 15 Просмотров: 913
File 16 Просмотров: 1154
File 17 Просмотров: 1340
File 18 Просмотров: 937
File 19 Просмотров: 811
File 20 Просмотров: 990
File 21 Просмотров: 843
File 22 Просмотров: 1012
File 23 Просмотров: 871
File 24 Просмотров: 868
File 25 Просмотров: 923
File 26 Просмотров: 900
File 27 Просмотров: 764
File 28 Просмотров: 1018
File 29 Просмотров: 786
File 30 Просмотров: 865
File 31 Просмотров: 769
File 32 Просмотров: 805
File 33 Просмотров: 873
File 34 Просмотров: 881
File 35 Просмотров: 674
File 36 Просмотров: 768
File 37 Просмотров: 651
File 38 Просмотров: 733
File 39 Просмотров: 747
File 40 Просмотров: 654
File 41 Просмотров: 705
File 42 Просмотров: 870
File 43 Просмотров: 649
File 44 Просмотров: 661
File 45 Просмотров: 718
File 46 Просмотров: 630
File 47 Просмотров: 759
File 48 Просмотров: 879
File 49 Просмотров: 769
File 50 Просмотров: 800
File 51 Просмотров: 782
File 52 Просмотров: 806
File 53 Просмотров: 638
File 54 Просмотров: 616
File 55 Просмотров: 689
File 56 Просмотров: 755
File 57 Просмотров: 590
File 58 Просмотров: 736
File 59 Просмотров: 689
File 60 Просмотров: 1192

Комментарии

Чтобы написать комментарии вам нужно войти в систему или зарегистрироваться



Заявка на расчет