I/O が私を混乱させているのはその時です。この場合、私の目標は、在庫品目の .txt ファイルと価格の別の .txt ファイルを取り込んで、品目の補充の総費用と、元の在庫を含む .txt ファイルを出力する関数を作成することです。データと補充が必要なアイテムの量。例えば:
Inventory Data:
Buns #50 #63
Burgers #32 #55
Ketchup #6 #10
Hotdogs #4 #35
Mustard #7 #8
注: ヘッダーは .txt ファイルに含まれており、常に 5 つのアイテムが補充されます。
出力ファイルは次のようになります。
Inventory Data:
Buns #50 #63
Burgers #32 #55
Ketchup #6 #10
Hotdogs #4 #35
Mustard #7 #8
Restocking Data:
Buns #63 #13
Burgers #55 #23
Ketchup #10 #4
Hotdogs #35 #31
Mustard #8 #1
私の出力合計は271になるはずです。
Prices:
Buns $2
Burgers $5
Ketchup $1
Hotdogs $4
Mustard $2
アムロは親切にも、必要なセリフを引き出す方法と、持っているものから必要なものを差し引く方法を理解するのを手伝ってくれました。今、私の最後の苦労 (そして、問題をより適切にパーソナライズする前に克服する必要がある最後のハードル) は、元のデータと補充データを出力する final を作成する方法を考え出すことです。テストケースのように見える必要があります
function[restock_cost] = inventory2(file, prices)
%// Reads both files
fh = fopen(file, 'rt');
C = textscan(fh, '%s', 'Delimiter','');
inventory = C{1};
fclose(fh);
Original = C{:};
Original = char(Original);
fh2 = fopen(prices, 'rt');
D = textscan(fh2, '%s', 'Delimiter','');
prices = D{1};
fclose(fh2);
%// Breaks up inventory data
inventory(1) = [];
x = regexp(inventory, '(\w+) #(\d+) #(\d+)', 'tokens', 'once');
x = vertcat(x{:});
itemName = x(:,1);
itemHave = str2double(x(:,2));
itemNeeded = str2double(x(:,3));
itemName = char(itemName);
%// Determines what needs to be restocked and how much is needed
Restock = itemNeeded - itemHave;
%// Breaks up price info
prices(1) = [];
x = regexp(prices, '(\w+) \$(\d+)', 'tokens', 'once');
x = vertcat(x{:});
item = x(:,1);
prices = str2double(x(:,2));
%// Finds the price
restock_cost = sum((Restock .* prices));
%// gets the business name
[name, ~] = strtok(file,'_');
%// Finds the size of Original(may help)
[r,c] = size(Original);
[r2,c2] = size(itemName);
[r3,c3] = size(itemNeeded);
%// Starts to write my output file.
fh2 = fopen([name '_RestockingData.txt'], 'wt');
fprintf(fh2, 'Inventory Data: \n');
fprintf(fh2, '\n');
for i = 2:r %// Don't want the header included
fprintf(fh2, Original(i,1:c));
fprintf(fh2,'\n');
end
fprintf(fh2, '\n');
fprintf(fh2,'\n');
fprintf(fh2, 'Restocking Data: \n');
fprintf(fh2,'\n');
for j = 1:r2
fprintf(fh2, itemName(j,1:c2));
fprintf(fh2,' #%d ', itemNeeded(j));
fprintf(fh2, '#%d', Restock(j));
fprintf(fh2,'\n');
end
end
これは近いですが、アイテム名と番号の間にスペースが 1 つだけある再入荷データを出力する必要があります。代わりに、それは私に与えています:
Inventory Data:
Chips #40 #100
Lettuce #80 #90
Cheese #22 #60
Tortillas #65 #100
Tomatoes #40 #70
Restocking Data:
Chips #100 #60
Lettuce #90 #10
Cheese #60 #38
Tortillas #100 #35
Tomatoes #70 #30
私もこれを試しました:
Restock_Data = {};
Restock_Data = [Restock_Data, {itemName, itemNeeded, Restock}];
Restocking = {Restock_Data};
Kill_Cell = [{Restocking}];
for j = 1:r2
fprintf(fh2, Restock_Data(j));
fprintf(fh2,'\n');
end
セルを他の形式に変換する必要がありますが、(Kill_Cell でわかるように) インデックスを作成できません。終わり
それがすべてです。念のために私に与えられたメモは次のとおりです。
Notes:
- All inventory numbers will have a # in front of them
- All the prices will have a $ in front of them and will always be a
full dollar amount.
- When creating the new output every item should be seperated by a space
Ex. 'Chips #5 #2'
- There will always be 5 items to stock.
- If your output file is not EXACTLY the same as the solution txt file,
then you will receive 0 credit for it.